From 08d06991374aa3e56640fdc63a6bdb20e864d9d5 Mon Sep 17 00:00:00 2001 From: chenbo <709206448@qq.com> Date: Thu, 22 Feb 2024 10:48:41 +0800 Subject: [PATCH] =?UTF-8?q?add=20=E4=BB=BB=E5=8A=A1=E5=88=86=E9=85=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../task/TaskAllocationController.php | 108 ++++++++++++++++ .../lists/task/TaskAllocationLists.php | 77 ++++++++++++ .../logic/task/TaskAllocationLogic.php | 118 ++++++++++++++++++ .../validate/task/TaskAllocationValidate.php | 94 ++++++++++++++ app/common/model/task/TaskAllocation.php | 34 +++++ 5 files changed, 431 insertions(+) create mode 100644 app/adminapi/controller/task/TaskAllocationController.php create mode 100644 app/adminapi/lists/task/TaskAllocationLists.php create mode 100644 app/adminapi/logic/task/TaskAllocationLogic.php create mode 100644 app/adminapi/validate/task/TaskAllocationValidate.php create mode 100644 app/common/model/task/TaskAllocation.php diff --git a/app/adminapi/controller/task/TaskAllocationController.php b/app/adminapi/controller/task/TaskAllocationController.php new file mode 100644 index 000000000..2acff1c29 --- /dev/null +++ b/app/adminapi/controller/task/TaskAllocationController.php @@ -0,0 +1,108 @@ +dataLists(new TaskAllocationLists()); + } + + + /** + * @notes 添加 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/22 10:47 + */ + public function add() + { + $params = (new TaskAllocationValidate())->post()->goCheck('add'); + $result = TaskAllocationLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(TaskAllocationLogic::getError()); + } + + + /** + * @notes 编辑 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/22 10:47 + */ + public function edit() + { + $params = (new TaskAllocationValidate())->post()->goCheck('edit'); + $result = TaskAllocationLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(TaskAllocationLogic::getError()); + } + + + /** + * @notes 删除 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/22 10:47 + */ + public function delete() + { + $params = (new TaskAllocationValidate())->post()->goCheck('delete'); + TaskAllocationLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/22 10:47 + */ + public function detail() + { + $params = (new TaskAllocationValidate())->goCheck('detail'); + $result = TaskAllocationLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/adminapi/lists/task/TaskAllocationLists.php b/app/adminapi/lists/task/TaskAllocationLists.php new file mode 100644 index 000000000..e17f92389 --- /dev/null +++ b/app/adminapi/lists/task/TaskAllocationLists.php @@ -0,0 +1,77 @@ + ['project'], + ]; + } + + + /** + * @notes 获取列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2024/02/22 10:47 + */ + public function lists(): array + { + return TaskAllocation::where($this->searchWhere) + ->field(['id', 'dataid', 'num', 'project', 'project_num', 'head', 'apptime', 'annex']) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select() + ->toArray(); + } + + + /** + * @notes 获取数量 + * @return int + * @author likeadmin + * @date 2024/02/22 10:47 + */ + public function count(): int + { + return TaskAllocation::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/adminapi/logic/task/TaskAllocationLogic.php b/app/adminapi/logic/task/TaskAllocationLogic.php new file mode 100644 index 000000000..cacdc41d5 --- /dev/null +++ b/app/adminapi/logic/task/TaskAllocationLogic.php @@ -0,0 +1,118 @@ + $params['dataid'], + 'num' => $params['num'], + 'project' => $params['project'], + 'project_num' => $params['project_num'], + 'head' => $params['head'], + 'apptime' => $params['apptime'], + 'annex' => $params['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 10:47 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + TaskAllocation::where('id', $params['id'])->update([ + 'dataid' => $params['dataid'], + 'num' => $params['num'], + 'project' => $params['project'], + 'project_num' => $params['project_num'], + 'head' => $params['head'], + 'apptime' => $params['apptime'], + 'annex' => $params['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 10:47 + */ + public static function delete(array $params): bool + { + return TaskAllocation::destroy($params['id']); + } + + + /** + * @notes 获取详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/02/22 10:47 + */ + public static function detail($params): array + { + return TaskAllocation::findOrEmpty($params['id'])->toArray(); + } +} \ No newline at end of file diff --git a/app/adminapi/validate/task/TaskAllocationValidate.php b/app/adminapi/validate/task/TaskAllocationValidate.php new file mode 100644 index 000000000..936b2506e --- /dev/null +++ b/app/adminapi/validate/task/TaskAllocationValidate.php @@ -0,0 +1,94 @@ + 'require', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + ]; + + + /** + * @notes 添加场景 + * @return TaskAllocationValidate + * @author likeadmin + * @date 2024/02/22 10:47 + */ + public function sceneAdd() + { + return $this->remove('id', true); + } + + + /** + * @notes 编辑场景 + * @return TaskAllocationValidate + * @author likeadmin + * @date 2024/02/22 10:47 + */ + public function sceneEdit() + { + return $this->only(['id']); + } + + + /** + * @notes 删除场景 + * @return TaskAllocationValidate + * @author likeadmin + * @date 2024/02/22 10:47 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return TaskAllocationValidate + * @author likeadmin + * @date 2024/02/22 10:47 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + +} \ No newline at end of file diff --git a/app/common/model/task/TaskAllocation.php b/app/common/model/task/TaskAllocation.php new file mode 100644 index 000000000..0a165e470 --- /dev/null +++ b/app/common/model/task/TaskAllocation.php @@ -0,0 +1,34 @@ +