| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- /**
- *
- * @author: xaboy<365615158@qq.com>
- * @day: 2017/11/11
- */
- namespace app\models\user;
- use app\admin\model\user\UserNoticeSee;
- use crmeb\traits\ModelTrait;
- use crmeb\basic\BaseModel;
- /**
- * TODO 用户通知Model
- * Class UserNotice
- * @package app\models\user
- */
- class UserNotice extends BaseModel
- {
- use ModelTrait;
- public static function getNotice($uid){
- $count_notice = self::whereIn('uid', [$uid, 0])->where("is_send",1)->count();
- $see_notice = UserNoticeSee::where("uid", $uid)->count();
- return $count_notice-$see_notice;
- }
- /**
- * @return array
- */
- public static function getNoticeList($uid, $page, $limit = 8){
- $list = self::whereIn('uid', [$uid,0])
- ->where('is_send', 1)
- ->field('id,user,title,content,add_time')
- ->order("add_time desc")
- ->limit($page*$limit,$limit)->select()->toArray();
- foreach ($list as $key => $value) {
- $list[$key]["add_time"] = date("Y-m-d H:i:s",$value["add_time"]);
- $list[$key]["is_see"] = 0; //UserNoticeSee::where("uid",$uid)->where("nid",$value["id"])->count() > 0 ? 1 : 0;
- }
- $data["list"] = $list;
- return $data;
- }
- /**
- * @return array
- */
- public static function seeNotice($uid, $nid){
- if(UserNoticeSee::where("uid", $uid)->where("nid", $nid)->count() <= 0){
- $data["nid"] = $nid;
- $data["uid"] = $uid;
- $data["add_time"] = time();
- UserNoticeSee::create($data);
- }
- }
- }
|