mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-18 16:02:55 +00:00
53 lines
1.3 KiB
PHP
53 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
*
|
|
* @author: xaboy<365615158@qq.com>
|
|
* @day: 2017/11/11
|
|
*/
|
|
|
|
namespace app\admin\model\user;
|
|
|
|
use app\admin\model\wechat\WechatUser;
|
|
use app\admin\model\user\UserNoticeSee;
|
|
use traits\ModelTrait;
|
|
use basic\ModelBasic;
|
|
|
|
/**
|
|
* 用户通知 model
|
|
* Class UserNotice
|
|
* @package app\admin\model\user
|
|
*/
|
|
class UserNotice extends ModelBasic
|
|
{
|
|
use ModelTrait;
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public static function getList(){
|
|
$model = new self;
|
|
$model->order('id desc');
|
|
return self::page($model,function($item,$key){
|
|
if($item["uid"] != ''){
|
|
$uids = explode(",",$item["uid"]);
|
|
array_splice($uids,0,1);
|
|
array_splice($uids,count($uids)-1,1);
|
|
$item["uid"] = $uids;
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* 获取用户通知
|
|
* @param array $where
|
|
* @return array
|
|
*/
|
|
public static function getUserList($where = array()){
|
|
$model = new self;
|
|
if(isset($where['title']) && $where['title'] != '') $model = $model->where('title','LIKE',"%".$where['title']."%");
|
|
$model = $model->where('type',2);
|
|
$model = $model->where('is_send',0);
|
|
$model = $model->order('id desc');
|
|
return self::page($model,$where);
|
|
}
|
|
} |