| 12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace app\common\repositories\system\notice;
- use app\common\dao\system\notice\SystemNoticeLogDao;
- use app\common\repositories\BaseRepository;
- /**
- * Class SystemNoticeLogRepository
- * @package app\common\repositories\system\notice
- * @author zfy
- * @day 2020/11/6
- * @mixin SystemNoticeLogDao
- */
- class SystemNoticeLogRepository extends BaseRepository
- {
- public function __construct(SystemNoticeLogDao $dao)
- {
- $this->dao = $dao;
- }
- public function getList(array $where, $page, $limit)
- {
- $query = $this->dao->search($where);
- $count = $query->count();
- $list = $query->page($page, $limit)->order('A.notice_log_id DESC')->select();
- return compact('count', 'list');
- }
- }
|