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