1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- declare (strict_types=1);
- namespace app\dao\system;
- use app\dao\BaseDao;
- use app\model\system\AwardLake;
- class AwardLakeDao extends BaseDao
- {
-
- protected function setModel(): string
- {
- return AwardLake::class;
- }
-
- public function getList(array $where, string $filed = "*", int $page = 0, int $limit = 0, array $with = [])
- {
- return $this->search($where)->field($filed)->with($with)->when($page && $limit, function ($query) use ($page, $limit) {
- $query->page($page, $limit);
- })->order('id desc')->select()->toArray();
- }
- }
|