params['subclass']) && !empty($this->params['subclass'])) $this->params['subclass'] = end($this->params['subclass']); return [ '=' => ['subclass','master_worker_id', 'training_task_id', 'training_course_id', 'play_time', 'exam_start_time', 'exam_end_time', 'study_status', 'exam_score'], ]; } /** * @notes 获取列表 * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @author likeadmin * @date 2025/02/16 16:44 */ public function lists(): array { $lists = TrainingWorkerCourse::with(['goodsCategory','trainingCourse','masterWorker','trainingTask'])->where($this->searchWhere) ->field(['*']) ->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select() ->toArray(); foreach ($lists as &$item) { if($item['goodsCategory']){ $item['category_id_text'] = $item['goodsCategory']['name']; $item['category_two_text'] = GoodsCategory::where('id',$item['goodsCategory']['pid']??0)->value('name')??''; $item['category_three_text'] = GoodsCategory::where('id',GoodsCategory::where('id',$item['goodsCategory']['pid'])->value('pid')??0)->value('name')??''; } } return $lists; } /** * @notes 获取数量 * @return int * @author likeadmin * @date 2025/02/16 16:44 */ public function count(): int { return TrainingWorkerCourse::where($this->searchWhere)->count(); } }