['inspection_id', 'must_check', 'check_result'], ]; } /** * @notes 获取工程监理--巡视结果列表 * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @author likeadmin * @date 2024/02/27 09:23 */ public function lists(): array { return SupervisionInspectionResult::withoutField('create_time,update_time,delete_time')->where($this->searchWhere) ->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select()->each(function($data){ $data['must_check_text'] = $data->must_check_text; $data['check_result_text'] = $data->check_result_text; }) ->toArray(); } /** * @notes 获取工程监理--巡视结果数量 * @return int * @author likeadmin * @date 2024/02/27 09:23 */ public function count(): int { return SupervisionInspectionResult::where($this->searchWhere)->count(); } }