123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- declare (strict_types=1);
- namespace app\dao\message;
- use app\dao\BaseDao;
- use app\model\message\SystemNotification;
- class SystemNotificationDao extends BaseDao
- {
-
- protected function setModel(): string
- {
- return SystemNotification::class;
- }
-
- public function getList(array $where, string $field = '*', int $page = 0, $limit = 0)
- {
- return $this->getModel()->where($where)->field($field)->when($page && $limit, function ($query) use ($page, $limit) {
- $query->page($page, $limit);
- })->order('id asc')->select()->toArray();
- }
- }
|