diff --git a/app/adminapi/controller/supervision_work/SupervisionAcceptProblemController.php b/app/adminapi/controller/supervision_work/SupervisionAcceptProblemController.php deleted file mode 100644 index 4aa6e5a6d..000000000 --- a/app/adminapi/controller/supervision_work/SupervisionAcceptProblemController.php +++ /dev/null @@ -1,108 +0,0 @@ -dataLists(new SupervisionAcceptProblemLists()); - } - - - /** - * @notes 添加工程监理--验收问题 - * @return \think\response\Json - * @author likeadmin - * @date 2024/02/27 15:23 - */ - public function add() - { - $params = (new SupervisionAcceptProblemValidate())->post()->goCheck('add'); - $result = SupervisionAcceptProblemLogic::add($params); - if (true === $result) { - return $this->success('添加成功', [], 1, 1); - } - return $this->fail(SupervisionAcceptProblemLogic::getError()); - } - - - /** - * @notes 编辑工程监理--验收问题 - * @return \think\response\Json - * @author likeadmin - * @date 2024/02/27 15:23 - */ - public function edit() - { - $params = (new SupervisionAcceptProblemValidate())->post()->goCheck('edit'); - $result = SupervisionAcceptProblemLogic::edit($params); - if (true === $result) { - return $this->success('编辑成功', [], 1, 1); - } - return $this->fail(SupervisionAcceptProblemLogic::getError()); - } - - - /** - * @notes 删除工程监理--验收问题 - * @return \think\response\Json - * @author likeadmin - * @date 2024/02/27 15:23 - */ - public function delete() - { - $params = (new SupervisionAcceptProblemValidate())->post()->goCheck('delete'); - SupervisionAcceptProblemLogic::delete($params); - return $this->success('删除成功', [], 1, 1); - } - - - /** - * @notes 获取工程监理--验收问题详情 - * @return \think\response\Json - * @author likeadmin - * @date 2024/02/27 15:23 - */ - public function detail() - { - $params = (new SupervisionAcceptProblemValidate())->goCheck('detail'); - $result = SupervisionAcceptProblemLogic::detail($params); - return $this->data($result); - } - - -} \ No newline at end of file diff --git a/app/adminapi/controller/supervision_work/SupervisionInspectionProblemController.php b/app/adminapi/controller/supervision_work/SupervisionInspectionProblemController.php deleted file mode 100644 index 80635b522..000000000 --- a/app/adminapi/controller/supervision_work/SupervisionInspectionProblemController.php +++ /dev/null @@ -1,108 +0,0 @@ -dataLists(new SupervisionInspectionProblemLists()); - } - - - /** - * @notes 添加工程监理--巡视问题 - * @return \think\response\Json - * @author likeadmin - * @date 2024/02/26 17:18 - */ - public function add() - { - $params = (new SupervisionInspectionProblemValidate())->post()->goCheck('add'); - $result = SupervisionInspectionProblemLogic::add($params); - if (true === $result) { - return $this->success('添加成功', [], 1, 1); - } - return $this->fail(SupervisionInspectionProblemLogic::getError()); - } - - - /** - * @notes 编辑工程监理--巡视问题 - * @return \think\response\Json - * @author likeadmin - * @date 2024/02/26 17:18 - */ - public function edit() - { - $params = (new SupervisionInspectionProblemValidate())->post()->goCheck('edit'); - $result = SupervisionInspectionProblemLogic::edit($params); - if (true === $result) { - return $this->success('编辑成功', [], 1, 1); - } - return $this->fail(SupervisionInspectionProblemLogic::getError()); - } - - - /** - * @notes 删除工程监理--巡视问题 - * @return \think\response\Json - * @author likeadmin - * @date 2024/02/26 17:18 - */ - public function delete() - { - $params = (new SupervisionInspectionProblemValidate())->post()->goCheck('delete'); - SupervisionInspectionProblemLogic::delete($params); - return $this->success('删除成功', [], 1, 1); - } - - - /** - * @notes 获取工程监理--巡视问题详情 - * @return \think\response\Json - * @author likeadmin - * @date 2024/02/26 17:18 - */ - public function detail() - { - $params = (new SupervisionInspectionProblemValidate())->goCheck('detail'); - $result = SupervisionInspectionProblemLogic::detail($params); - return $this->data($result); - } - - -} \ No newline at end of file diff --git a/app/adminapi/controller/supervision_work/SupervisionSideStationProblemController.php b/app/adminapi/controller/supervision_work/SupervisionSideStationProblemController.php deleted file mode 100644 index 14d238162..000000000 --- a/app/adminapi/controller/supervision_work/SupervisionSideStationProblemController.php +++ /dev/null @@ -1,108 +0,0 @@ -dataLists(new SupervisionSideStationProblemLists()); - } - - - /** - * @notes 添加工程监理--旁站问题 - * @return \think\response\Json - * @author likeadmin - * @date 2024/02/27 13:58 - */ - public function add() - { - $params = (new SupervisionSideStationProblemValidate())->post()->goCheck('add'); - $result = SupervisionSideStationProblemLogic::add($params); - if (true === $result) { - return $this->success('添加成功', [], 1, 1); - } - return $this->fail(SupervisionSideStationProblemLogic::getError()); - } - - - /** - * @notes 编辑工程监理--旁站问题 - * @return \think\response\Json - * @author likeadmin - * @date 2024/02/27 13:58 - */ - public function edit() - { - $params = (new SupervisionSideStationProblemValidate())->post()->goCheck('edit'); - $result = SupervisionSideStationProblemLogic::edit($params); - if (true === $result) { - return $this->success('编辑成功', [], 1, 1); - } - return $this->fail(SupervisionSideStationProblemLogic::getError()); - } - - - /** - * @notes 删除工程监理--旁站问题 - * @return \think\response\Json - * @author likeadmin - * @date 2024/02/27 13:58 - */ - public function delete() - { - $params = (new SupervisionSideStationProblemValidate())->post()->goCheck('delete'); - SupervisionSideStationProblemLogic::delete($params); - return $this->success('删除成功', [], 1, 1); - } - - - /** - * @notes 获取工程监理--旁站问题详情 - * @return \think\response\Json - * @author likeadmin - * @date 2024/02/27 13:58 - */ - public function detail() - { - $params = (new SupervisionSideStationProblemValidate())->goCheck('detail'); - $result = SupervisionSideStationProblemLogic::detail($params); - return $this->data($result); - } - - -} \ No newline at end of file diff --git a/app/adminapi/lists/supervision_work/SupervisionAcceptProblemLists.php b/app/adminapi/lists/supervision_work/SupervisionAcceptProblemLists.php deleted file mode 100644 index 333199300..000000000 --- a/app/adminapi/lists/supervision_work/SupervisionAcceptProblemLists.php +++ /dev/null @@ -1,76 +0,0 @@ - ['accept_id'], - ]; - } - - - /** - * @notes 获取工程监理--验收问题列表 - * @return array - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException - * @author likeadmin - * @date 2024/02/27 15:23 - */ - public function lists(): array - { - return SupervisionAcceptProblem::withoutField('create_time,update_time,delete_time')->where($this->searchWhere) - ->limit($this->limitOffset, $this->limitLength) - ->order(['id' => 'desc']) - ->select() - ->toArray(); - } - - - /** - * @notes 获取工程监理--验收问题数量 - * @return int - * @author likeadmin - * @date 2024/02/27 15:23 - */ - public function count(): int - { - return SupervisionAcceptProblem::where($this->searchWhere)->count(); - } - -} \ No newline at end of file diff --git a/app/adminapi/lists/supervision_work/SupervisionInspectionProblemLists.php b/app/adminapi/lists/supervision_work/SupervisionInspectionProblemLists.php deleted file mode 100644 index 005bb4048..000000000 --- a/app/adminapi/lists/supervision_work/SupervisionInspectionProblemLists.php +++ /dev/null @@ -1,76 +0,0 @@ - ['inspection_id'], - ]; - } - - - /** - * @notes 获取工程监理--巡视问题列表 - * @return array - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException - * @author likeadmin - * @date 2024/02/26 17:18 - */ - public function lists(): array - { - return SupervisionInspectionProblem::withoutField('create_time,update_time,delete_time')->where($this->searchWhere) - ->limit($this->limitOffset, $this->limitLength) - ->order(['id' => 'desc']) - ->select() - ->toArray(); - } - - - /** - * @notes 获取工程监理--巡视问题数量 - * @return int - * @author likeadmin - * @date 2024/02/26 17:18 - */ - public function count(): int - { - return SupervisionInspectionProblem::where($this->searchWhere)->count(); - } - -} \ No newline at end of file diff --git a/app/adminapi/lists/supervision_work/SupervisionSideStationProblemLists.php b/app/adminapi/lists/supervision_work/SupervisionSideStationProblemLists.php deleted file mode 100644 index 85367bf74..000000000 --- a/app/adminapi/lists/supervision_work/SupervisionSideStationProblemLists.php +++ /dev/null @@ -1,76 +0,0 @@ - ['side_station_id'], - ]; - } - - - /** - * @notes 获取工程监理--旁站问题列表 - * @return array - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException - * @author likeadmin - * @date 2024/02/27 13:58 - */ - public function lists(): array - { - return SupervisionSideStationProblem::withoutField('create_time,update_time,delete_time')->where($this->searchWhere) - ->limit($this->limitOffset, $this->limitLength) - ->order(['id' => 'desc']) - ->select() - ->toArray(); - } - - - /** - * @notes 获取工程监理--旁站问题数量 - * @return int - * @author likeadmin - * @date 2024/02/27 13:58 - */ - public function count(): int - { - return SupervisionSideStationProblem::where($this->searchWhere)->count(); - } - -} \ No newline at end of file diff --git a/app/adminapi/logic/supervision_work/SupervisionAcceptProblemLogic.php b/app/adminapi/logic/supervision_work/SupervisionAcceptProblemLogic.php deleted file mode 100644 index f6da93b72..000000000 --- a/app/adminapi/logic/supervision_work/SupervisionAcceptProblemLogic.php +++ /dev/null @@ -1,111 +0,0 @@ - $params['accept_id'], - 'problem_cate' => $params['problem_cate'], - 'problem_description' => $params['problem_description'], - 'problem_name' => $params['problem_name'] - ]); - 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/27 15:23 - */ - public static function edit(array $params): bool - { - Db::startTrans(); - try { - SupervisionAcceptProblem::where('id', $params['id'])->update([ - 'accept_id' => $params['accept_id'], - 'problem_cate' => $params['problem_cate'], - 'problem_description' => $params['problem_description'], - 'problem_name' => $params['problem_name'], - 'update_time' =>time(), - ]); - 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/27 15:23 - */ - public static function delete(array $params): bool - { - return SupervisionAcceptProblem::destroy($params['id']); - } - - - /** - * @notes 获取工程监理--验收问题详情 - * @param $params - * @return array - * @author likeadmin - * @date 2024/02/27 15:23 - */ - public static function detail($params): array - { - return SupervisionAcceptProblem::withoutField('create_time,update_time,delete_time')->findOrEmpty($params['id'])->toArray(); - } -} \ No newline at end of file diff --git a/app/adminapi/logic/supervision_work/SupervisionInspectionProblemLogic.php b/app/adminapi/logic/supervision_work/SupervisionInspectionProblemLogic.php deleted file mode 100644 index 537f4868a..000000000 --- a/app/adminapi/logic/supervision_work/SupervisionInspectionProblemLogic.php +++ /dev/null @@ -1,112 +0,0 @@ - $params['inspection_id'], - 'problem_cate' => $params['problem_cate'], - 'problem_description' => $params['problem_description'], - 'problem_name' => $params['problem_name'], - ]); - 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/26 17:18 - */ - public static function edit(array $params): bool - { - Db::startTrans(); - try { - SupervisionInspectionProblem::where('id', $params['id'])->update([ - 'inspection_id' => $params['inspection_id'], - 'problem_cate' => $params['problem_cate'], - 'problem_description' => $params['problem_description'], - 'problem_name' => $params['problem_name'], - 'update_time' => time(), - ]); - 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/26 17:18 - */ - public static function delete(array $params): bool - { - return SupervisionInspectionProblem::destroy($params['id']); - } - - - /** - * @notes 获取工程监理--巡视问题详情 - * @param $params - * @return array - * @author likeadmin - * @date 2024/02/26 17:18 - */ - public static function detail($params): array - { - $data = SupervisionInspectionProblem::withoutField('create_time,update_time,delete_time')->findOrEmpty($params['id']); - return $data->toArray(); - } -} \ No newline at end of file diff --git a/app/adminapi/logic/supervision_work/SupervisionSideStationProblemLogic.php b/app/adminapi/logic/supervision_work/SupervisionSideStationProblemLogic.php deleted file mode 100644 index ba71054b7..000000000 --- a/app/adminapi/logic/supervision_work/SupervisionSideStationProblemLogic.php +++ /dev/null @@ -1,111 +0,0 @@ - $params['side_station_id'], - 'problem_cate' => $params['problem_cate'], - 'problem_description' => $params['problem_description'], - 'problem_name' => $params['problem_name'] - ]); - 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/27 13:58 - */ - public static function edit(array $params): bool - { - Db::startTrans(); - try { - SupervisionSideStationProblem::where('id', $params['id'])->update([ - 'side_station_id' => $params['side_station_id'], - 'problem_cate' => $params['problem_cate'], - 'problem_description' => $params['problem_description'], - 'problem_name' => $params['problem_name'], - 'update_time' => time(), - ]); - 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/27 13:58 - */ - public static function delete(array $params): bool - { - return SupervisionSideStationProblem::destroy($params['id']); - } - - - /** - * @notes 获取工程监理--旁站问题详情 - * @param $params - * @return array - * @author likeadmin - * @date 2024/02/27 13:58 - */ - public static function detail($params): array - { - return SupervisionSideStationProblem::withoutField('create_time,update_time,delete_time')->findOrEmpty($params['id'])->toArray(); - } -} \ No newline at end of file diff --git a/app/adminapi/validate/supervision_work/SupervisionAcceptProblemValidate.php b/app/adminapi/validate/supervision_work/SupervisionAcceptProblemValidate.php deleted file mode 100644 index 3628aecc4..000000000 --- a/app/adminapi/validate/supervision_work/SupervisionAcceptProblemValidate.php +++ /dev/null @@ -1,122 +0,0 @@ - 'require|checkData', - 'accept_id' => 'require|checkAccept', - 'problem_cate' => 'require', - 'problem_description' => 'require', - 'problem_name' => 'require', - ]; - - - /** - * 参数描述 - * @var string[] - */ - protected $field = [ - 'id' => 'id', - 'accept_id' => '验收id', - 'problem_cate' => '问题分类', - 'problem_description' => '问题说明', - 'problem_name' => '问题名称', - ]; - - - /** - * @notes 添加场景 - * @return SupervisionAcceptProblemValidate - * @author likeadmin - * @date 2024/02/27 15:23 - */ - public function sceneAdd() - { - return $this->only(['accept_id','problem_cate','problem_description','problem_name']); - } - - - /** - * @notes 编辑场景 - * @return SupervisionAcceptProblemValidate - * @author likeadmin - * @date 2024/02/27 15:23 - */ - public function sceneEdit() - { - return $this->only(['id','accept_id','problem_cate','problem_description','problem_name']); - } - - - /** - * @notes 删除场景 - * @return SupervisionAcceptProblemValidate - * @author likeadmin - * @date 2024/02/27 15:23 - */ - public function sceneDelete() - { - return $this->only(['id']); - } - - - /** - * @notes 详情场景 - * @return SupervisionAcceptProblemValidate - * @author likeadmin - * @date 2024/02/27 15:23 - */ - public function sceneDetail() - { - return $this->only(['id']); - } - - public function checkData($value): bool|string - { - $data = SupervisionAcceptProblem::where('id',$value)->findOrEmpty(); - if($data->isEmpty()){ - return '数据不存在'; - } - return true; - } - - public function checkAccept($value): bool|string - { - $data = SupervisionAccept::where('id',$value)->findOrEmpty(); - if($data->isEmpty()){ - return '验收信息不存在'; - } - return true; - } - -} \ No newline at end of file diff --git a/app/adminapi/validate/supervision_work/SupervisionInspectionProblemValidate.php b/app/adminapi/validate/supervision_work/SupervisionInspectionProblemValidate.php deleted file mode 100644 index 8148cee14..000000000 --- a/app/adminapi/validate/supervision_work/SupervisionInspectionProblemValidate.php +++ /dev/null @@ -1,122 +0,0 @@ - 'require|checkData', - 'inspection_id' => 'require|checkInspection', - 'problem_cate' => 'require', - 'problem_description' => 'require', - 'problem_name' => 'require', - ]; - - - /** - * 参数描述 - * @var string[] - */ - protected $field = [ - 'id' => 'id', - 'inspection_id' => '巡视id', - 'problem_cate' => '问题分类', - 'problem_description' => '问题说明', - 'problem_name' => '问题名称', - ]; - - - /** - * @notes 添加场景 - * @return SupervisionInspectionProblemValidate - * @author likeadmin - * @date 2024/02/26 17:18 - */ - public function sceneAdd() - { - return $this->only(['inspection_id','problem_cate','problem_description','problem_name']); - } - - - /** - * @notes 编辑场景 - * @return SupervisionInspectionProblemValidate - * @author likeadmin - * @date 2024/02/26 17:18 - */ - public function sceneEdit() - { - return $this->only(['id','inspection_id','problem_cate','problem_description','problem_name']); - } - - - /** - * @notes 删除场景 - * @return SupervisionInspectionProblemValidate - * @author likeadmin - * @date 2024/02/26 17:18 - */ - public function sceneDelete() - { - return $this->only(['id']); - } - - - /** - * @notes 详情场景 - * @return SupervisionInspectionProblemValidate - * @author likeadmin - * @date 2024/02/26 17:18 - */ - public function sceneDetail() - { - return $this->only(['id']); - } - - public function checkData($value): bool|string - { - $data = SupervisionInspectionProblem::where('id',$value)->findOrEmpty(); - if($data->isEmpty()){ - return '数据不存在'; - } - return true; - } - - public function checkInspection($value): bool|string - { - $data = SupervisionInspection::where('id',$value)->findOrEmpty(); - if($data->isEmpty()){ - return '巡视信息不存在'; - } - return true; - } - -} \ No newline at end of file diff --git a/app/adminapi/validate/supervision_work/SupervisionSideStationProblemValidate.php b/app/adminapi/validate/supervision_work/SupervisionSideStationProblemValidate.php deleted file mode 100644 index 34f912a70..000000000 --- a/app/adminapi/validate/supervision_work/SupervisionSideStationProblemValidate.php +++ /dev/null @@ -1,122 +0,0 @@ - 'require|checkData', - 'side_station_id' => 'require|checkSideStation', - 'problem_cate' => 'require', - 'problem_description' => 'require', - 'problem_name' => 'require', - ]; - - - /** - * 参数描述 - * @var string[] - */ - protected $field = [ - 'id' => 'id', - 'side_station_id' => '旁站id', - 'problem_cate' => '问题分类', - 'problem_description' => '问题说明', - 'problem_name' => '问题名称', - ]; - - - /** - * @notes 添加场景 - * @return SupervisionSideStationProblemValidate - * @author likeadmin - * @date 2024/02/27 13:58 - */ - public function sceneAdd() - { - return $this->only(['side_station_id','problem_cate','problem_description','problem_name']); - } - - - /** - * @notes 编辑场景 - * @return SupervisionSideStationProblemValidate - * @author likeadmin - * @date 2024/02/27 13:58 - */ - public function sceneEdit() - { - return $this->only(['id','side_station_id','problem_cate','problem_description','problem_name']); - } - - - /** - * @notes 删除场景 - * @return SupervisionSideStationProblemValidate - * @author likeadmin - * @date 2024/02/27 13:58 - */ - public function sceneDelete() - { - return $this->only(['id']); - } - - - /** - * @notes 详情场景 - * @return SupervisionSideStationProblemValidate - * @author likeadmin - * @date 2024/02/27 13:58 - */ - public function sceneDetail() - { - return $this->only(['id']); - } - - public function checkData($value): bool|string - { - $data = SupervisionSideStationProblem::where('id',$value)->findOrEmpty(); - if($data->isEmpty()){ - return '数据不存在'; - } - return true; - } - - public function checkInspection($value): bool|string - { - $data = SupervisionSideStation::where('id',$value)->findOrEmpty(); - if($data->isEmpty()){ - return '旁站信息不存在'; - } - return true; - } - -} \ No newline at end of file diff --git a/app/common/model/supervision_work/SupervisionAcceptProblem.php b/app/common/model/supervision_work/SupervisionAcceptProblem.php deleted file mode 100644 index 0f22ea410..000000000 --- a/app/common/model/supervision_work/SupervisionAcceptProblem.php +++ /dev/null @@ -1,34 +0,0 @@ -