123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- namespace app\dao\system\timer;
- use app\dao\BaseDao;
- use app\model\system\timer\SystemTimer;
- class SystemTimerDao extends BaseDao
- {
- protected function setModel(): string
- {
- return SystemTimer::class;
- }
-
- public function getList(array $where, int $page = 0, int $limit = 0, string $field = '*')
- {
- return $this->search($where)->field($field)->when($page && $limit, function ($query) use($page, $limit) {
- $query->page($page, $limit);
- })->select()->toArray();
- }
- }
|