From 3ef0794361cb647905566018389dee845750071d Mon Sep 17 00:00:00 2001 From: chenbo <709206448@qq.com> Date: Thu, 22 Feb 2024 17:19:18 +0800 Subject: [PATCH] fixed --- ...TaskHandlingThreeLevelReviewController.php | 108 +++++++++++ .../TaskHandlingThreeLevelReviewLists.php | 77 ++++++++ .../TaskHandlingThreeLevelReviewLogic.php | 178 ++++++++++++++++++ .../TaskHandlingThreeLevelReviewValidate.php | 94 +++++++++ .../model/TaskHandlingThreeLevelReview.php | 34 ++++ 5 files changed, 491 insertions(+) create mode 100644 app/adminapi/controller/TaskHandlingThreeLevelReviewController.php create mode 100644 app/adminapi/lists/TaskHandlingThreeLevelReviewLists.php create mode 100644 app/adminapi/logic/TaskHandlingThreeLevelReviewLogic.php create mode 100644 app/adminapi/validate/TaskHandlingThreeLevelReviewValidate.php create mode 100644 app/common/model/TaskHandlingThreeLevelReview.php diff --git a/app/adminapi/controller/TaskHandlingThreeLevelReviewController.php b/app/adminapi/controller/TaskHandlingThreeLevelReviewController.php new file mode 100644 index 000000000..eea734f83 --- /dev/null +++ b/app/adminapi/controller/TaskHandlingThreeLevelReviewController.php @@ -0,0 +1,108 @@ +dataLists(new TaskHandlingThreeLevelReviewLists()); + } + + + /** + * @notes 添加 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/22 17:18 + */ + public function add() + { + $params = (new TaskHandlingThreeLevelReviewValidate())->post()->goCheck('add'); + $result = TaskHandlingThreeLevelReviewLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(TaskHandlingThreeLevelReviewLogic::getError()); + } + + + /** + * @notes 编辑 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/22 17:18 + */ + public function edit() + { + $params = (new TaskHandlingThreeLevelReviewValidate())->post()->goCheck('edit'); + $result = TaskHandlingThreeLevelReviewLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(TaskHandlingThreeLevelReviewLogic::getError()); + } + + + /** + * @notes 删除 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/22 17:18 + */ + public function delete() + { + $params = (new TaskHandlingThreeLevelReviewValidate())->post()->goCheck('delete'); + TaskHandlingThreeLevelReviewLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/22 17:18 + */ + public function detail() + { + $params = (new TaskHandlingThreeLevelReviewValidate())->goCheck('detail'); + $result = TaskHandlingThreeLevelReviewLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/adminapi/lists/TaskHandlingThreeLevelReviewLists.php b/app/adminapi/lists/TaskHandlingThreeLevelReviewLists.php new file mode 100644 index 000000000..be4b16170 --- /dev/null +++ b/app/adminapi/lists/TaskHandlingThreeLevelReviewLists.php @@ -0,0 +1,77 @@ +searchWhere) + ->field(['id', 'dataid', 'num', 'project', 'project_num', 'task', 'processes', 'rtype', 'zType', 'engineer', 'head', 'examine', 'one', 'two', 'three', 'apptime', 'level', 'area', 'type', 'use', 'construction', 'ask', 'according', 'clbc', 'ssje', 'gcshd', 'hzhj', 'rg', 'xmhd', 'bmhd', 'shbhd', 'kaigong', 'jungong', 'bz']) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select() + ->toArray(); + } + + + /** + * @notes 获取数量 + * @return int + * @author likeadmin + * @date 2024/02/22 17:18 + */ + public function count(): int + { + return TaskHandlingThreeLevelReview::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/adminapi/logic/TaskHandlingThreeLevelReviewLogic.php b/app/adminapi/logic/TaskHandlingThreeLevelReviewLogic.php new file mode 100644 index 000000000..bb7b78073 --- /dev/null +++ b/app/adminapi/logic/TaskHandlingThreeLevelReviewLogic.php @@ -0,0 +1,178 @@ + $params['dataid'], + 'num' => $params['num'], + 'project' => $params['project'], + 'project_num' => $params['project_num'], + 'task' => $params['task'], + 'processes' => $params['processes'], + 'rtype' => $params['rtype'], + 'zType' => $params['zType'], + 'engineer' => $params['engineer'], + 'head' => $params['head'], + 'examine' => $params['examine'], + 'one' => $params['one'], + 'two' => $params['two'], + 'three' => $params['three'], + 'apptime' => $params['apptime'], + 'level' => $params['level'], + 'area' => $params['area'], + 'type' => $params['type'], + 'use' => $params['use'], + 'construction' => $params['construction'], + 'ask' => $params['ask'], + 'according' => $params['according'], + 'clbc' => $params['clbc'], + 'ssje' => $params['ssje'], + 'gcshd' => $params['gcshd'], + 'hzhj' => $params['hzhj'], + 'rg' => $params['rg'], + 'xmhd' => $params['xmhd'], + 'bmhd' => $params['bmhd'], + 'shbhd' => $params['shbhd'], + 'kaigong' => $params['kaigong'], + 'jungong' => $params['jungong'], + 'bz' => $params['bz'], + 'result_file' => $params['result_file'], + 'master_annex' => $params['master_annex'], + 'bm_annex' => $params['bm_annex'], + 'shb_annex' => $params['shb_annex'], + ]); + + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + self::setError($e->getMessage()); + return false; + } + } + + + /** + * @notes 编辑 + * @param array $params + * @return bool + * @author likeadmin + * @date 2024/02/22 17:18 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + TaskHandlingThreeLevelReview::where('id', $params['id'])->update([ + 'dataid' => $params['dataid'], + 'num' => $params['num'], + 'project' => $params['project'], + 'project_num' => $params['project_num'], + 'task' => $params['task'], + 'processes' => $params['processes'], + 'rtype' => $params['rtype'], + 'zType' => $params['zType'], + 'engineer' => $params['engineer'], + 'head' => $params['head'], + 'examine' => $params['examine'], + 'one' => $params['one'], + 'two' => $params['two'], + 'three' => $params['three'], + 'apptime' => $params['apptime'], + 'level' => $params['level'], + 'area' => $params['area'], + 'type' => $params['type'], + 'use' => $params['use'], + 'construction' => $params['construction'], + 'ask' => $params['ask'], + 'according' => $params['according'], + 'clbc' => $params['clbc'], + 'ssje' => $params['ssje'], + 'gcshd' => $params['gcshd'], + 'hzhj' => $params['hzhj'], + 'rg' => $params['rg'], + 'xmhd' => $params['xmhd'], + 'bmhd' => $params['bmhd'], + 'shbhd' => $params['shbhd'], + 'kaigong' => $params['kaigong'], + 'jungong' => $params['jungong'], + 'bz' => $params['bz'], + 'result_file' => $params['result_file'], + 'master_annex' => $params['master_annex'], + 'bm_annex' => $params['bm_annex'], + 'shb_annex' => $params['shb_annex'], + ]); + + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + self::setError($e->getMessage()); + return false; + } + } + + + /** + * @notes 删除 + * @param array $params + * @return bool + * @author likeadmin + * @date 2024/02/22 17:18 + */ + public static function delete(array $params): bool + { + return TaskHandlingThreeLevelReview::destroy($params['id']); + } + + + /** + * @notes 获取详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/02/22 17:18 + */ + public static function detail($params): array + { + return TaskHandlingThreeLevelReview::findOrEmpty($params['id'])->toArray(); + } +} \ No newline at end of file diff --git a/app/adminapi/validate/TaskHandlingThreeLevelReviewValidate.php b/app/adminapi/validate/TaskHandlingThreeLevelReviewValidate.php new file mode 100644 index 000000000..8bfcced01 --- /dev/null +++ b/app/adminapi/validate/TaskHandlingThreeLevelReviewValidate.php @@ -0,0 +1,94 @@ + 'require', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + ]; + + + /** + * @notes 添加场景 + * @return TaskHandlingThreeLevelReviewValidate + * @author likeadmin + * @date 2024/02/22 17:18 + */ + public function sceneAdd() + { + return $this->remove('id', true); + } + + + /** + * @notes 编辑场景 + * @return TaskHandlingThreeLevelReviewValidate + * @author likeadmin + * @date 2024/02/22 17:18 + */ + public function sceneEdit() + { + return $this->only(['id']); + } + + + /** + * @notes 删除场景 + * @return TaskHandlingThreeLevelReviewValidate + * @author likeadmin + * @date 2024/02/22 17:18 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return TaskHandlingThreeLevelReviewValidate + * @author likeadmin + * @date 2024/02/22 17:18 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + +} \ No newline at end of file diff --git a/app/common/model/TaskHandlingThreeLevelReview.php b/app/common/model/TaskHandlingThreeLevelReview.php new file mode 100644 index 000000000..4e9dbd011 --- /dev/null +++ b/app/common/model/TaskHandlingThreeLevelReview.php @@ -0,0 +1,34 @@ +