This commit is contained in:
mkm 2023-08-16 10:20:46 +08:00
parent 1598bd0bde
commit eba96151f6

@ -69,7 +69,7 @@ class TaskSchedulingLists extends BaseAdminDataLists implements ListsSearchInter
} }
return TaskScheduling::where($this->searchWhere) return TaskScheduling::where($this->searchWhere)
->with(['admin','company','company_type']) ->with(['admin','company','company_type'])
->field(['id', 'create_user_id', 'company_id', 'company_type', 'status']) // ->field(['id', 'create_user_id', 'company_id', 'company_type', 'status'])
->limit($this->limitOffset, $this->limitLength) ->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc']) ->order(['id' => 'desc'])
->select() ->select()