['org_id', 'department_id', 'project_id', 'theme', 'supplier', 'supplier_contacts', 'importance', 'recording_time', 'demand_content', 'annex'], ]; } /** * @notes 获取客户需求列表 * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @author likeadmin * @date 2023/11/24 21:18 */ public function lists(): array { return CustomerDemand::where($this->searchWhere) ->field(['id', 'org_id', 'department_id', 'project_id', 'theme', 'supplier', 'supplier_contacts', 'importance', 'recording_time', 'demand_content', 'annex']) ->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select() ->toArray(); } /** * @notes 获取客户需求数量 * @return int * @author likeadmin * @date 2023/11/24 21:18 */ public function count(): int { return CustomerDemand::where($this->searchWhere)->count(); } }