diff --git a/app/adminapi/controller/custom/CustomerDemandController.php b/app/adminapi/controller/custom/CustomerDemandController.php new file mode 100644 index 000000000..bdb7d03b1 --- /dev/null +++ b/app/adminapi/controller/custom/CustomerDemandController.php @@ -0,0 +1,108 @@ +dataLists(new CustomerDemandLists()); + } + + + /** + * @notes 添加客户需求 + * @return \think\response\Json + * @author likeadmin + * @date 2023/11/24 21:18 + */ + public function add() + { + $params = (new CustomerDemandValidate())->post()->goCheck('add'); + $result = CustomerDemandLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(CustomerDemandLogic::getError()); + } + + + /** + * @notes 编辑客户需求 + * @return \think\response\Json + * @author likeadmin + * @date 2023/11/24 21:18 + */ + public function edit() + { + $params = (new CustomerDemandValidate())->post()->goCheck('edit'); + $result = CustomerDemandLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(CustomerDemandLogic::getError()); + } + + + /** + * @notes 删除客户需求 + * @return \think\response\Json + * @author likeadmin + * @date 2023/11/24 21:18 + */ + public function delete() + { + $params = (new CustomerDemandValidate())->post()->goCheck('delete'); + CustomerDemandLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取客户需求详情 + * @return \think\response\Json + * @author likeadmin + * @date 2023/11/24 21:18 + */ + public function detail() + { + $params = (new CustomerDemandValidate())->goCheck('detail'); + $result = CustomerDemandLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/adminapi/controller/custom/CustomerDemandSolutionController.php b/app/adminapi/controller/custom/CustomerDemandSolutionController.php new file mode 100644 index 000000000..4d9bae12d --- /dev/null +++ b/app/adminapi/controller/custom/CustomerDemandSolutionController.php @@ -0,0 +1,108 @@ +dataLists(new CustomerDemandSolutionLists()); + } + + + /** + * @notes 添加解决方案 + * @return \think\response\Json + * @author likeadmin + * @date 2023/11/24 21:32 + */ + public function add() + { + $params = (new CustomerDemandSolutionValidate())->post()->goCheck('add'); + $result = CustomerDemandSolutionLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(CustomerDemandSolutionLogic::getError()); + } + + + /** + * @notes 编辑解决方案 + * @return \think\response\Json + * @author likeadmin + * @date 2023/11/24 21:32 + */ + public function edit() + { + $params = (new CustomerDemandSolutionValidate())->post()->goCheck('edit'); + $result = CustomerDemandSolutionLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(CustomerDemandSolutionLogic::getError()); + } + + + /** + * @notes 删除解决方案 + * @return \think\response\Json + * @author likeadmin + * @date 2023/11/24 21:32 + */ + public function delete() + { + $params = (new CustomerDemandSolutionValidate())->post()->goCheck('delete'); + CustomerDemandSolutionLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取解决方案详情 + * @return \think\response\Json + * @author likeadmin + * @date 2023/11/24 21:32 + */ + public function detail() + { + $params = (new CustomerDemandSolutionValidate())->goCheck('detail'); + $result = CustomerDemandSolutionLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/adminapi/controller/project/CompetitorController.php b/app/adminapi/controller/project/CompetitorController.php new file mode 100644 index 000000000..b617bd2aa --- /dev/null +++ b/app/adminapi/controller/project/CompetitorController.php @@ -0,0 +1,108 @@ +dataLists(new CompetitorLists()); + } + + + /** + * @notes 添加竞争对手 + * @return \think\response\Json + * @author likeadmin + * @date 2023/11/24 22:01 + */ + public function add() + { + $params = (new CompetitorValidate())->post()->goCheck('add'); + $result = CompetitorLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(CompetitorLogic::getError()); + } + + + /** + * @notes 编辑竞争对手 + * @return \think\response\Json + * @author likeadmin + * @date 2023/11/24 22:01 + */ + public function edit() + { + $params = (new CompetitorValidate())->post()->goCheck('edit'); + $result = CompetitorLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(CompetitorLogic::getError()); + } + + + /** + * @notes 删除竞争对手 + * @return \think\response\Json + * @author likeadmin + * @date 2023/11/24 22:01 + */ + public function delete() + { + $params = (new CompetitorValidate())->post()->goCheck('delete'); + CompetitorLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取竞争对手详情 + * @return \think\response\Json + * @author likeadmin + * @date 2023/11/24 22:01 + */ + public function detail() + { + $params = (new CompetitorValidate())->goCheck('detail'); + $result = CompetitorLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/adminapi/controller/project/ProjectEstimateController.php b/app/adminapi/controller/project/ProjectEstimateController.php new file mode 100644 index 000000000..c1bd35126 --- /dev/null +++ b/app/adminapi/controller/project/ProjectEstimateController.php @@ -0,0 +1,108 @@ +dataLists(new ProjectEstimateLists()); + } + + + /** + * @notes 添加项目概算 + * @return \think\response\Json + * @author likeadmin + * @date 2023/11/24 21:42 + */ + public function add() + { + $params = (new ProjectEstimateValidate())->post()->goCheck('add'); + $result = ProjectEstimateLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(ProjectEstimateLogic::getError()); + } + + + /** + * @notes 编辑项目概算 + * @return \think\response\Json + * @author likeadmin + * @date 2023/11/24 21:42 + */ + public function edit() + { + $params = (new ProjectEstimateValidate())->post()->goCheck('edit'); + $result = ProjectEstimateLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(ProjectEstimateLogic::getError()); + } + + + /** + * @notes 删除项目概算 + * @return \think\response\Json + * @author likeadmin + * @date 2023/11/24 21:42 + */ + public function delete() + { + $params = (new ProjectEstimateValidate())->post()->goCheck('delete'); + ProjectEstimateLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取项目概算详情 + * @return \think\response\Json + * @author likeadmin + * @date 2023/11/24 21:42 + */ + public function detail() + { + $params = (new ProjectEstimateValidate())->goCheck('detail'); + $result = ProjectEstimateLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/adminapi/lists/custom/CustomerDemandLists.php b/app/adminapi/lists/custom/CustomerDemandLists.php new file mode 100644 index 000000000..3ec99a165 --- /dev/null +++ b/app/adminapi/lists/custom/CustomerDemandLists.php @@ -0,0 +1,77 @@ + ['org_id', 'department_id', 'project_id', 'theme', 'supplier', 'supplier_contacts', 'importance', 'recording_time', 'demand_content', 'annex'], + ]; + } + + + /** + * @notes 获取客户需求列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2023/11/24 21:18 + */ + public function lists(): array + { + return CustomerDemand::where($this->searchWhere) + ->field(['id', 'org_id', 'department_id', 'project_id', 'theme', 'supplier', 'supplier_contacts', 'importance', 'recording_time', 'demand_content', 'annex']) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select() + ->toArray(); + } + + + /** + * @notes 获取客户需求数量 + * @return int + * @author likeadmin + * @date 2023/11/24 21:18 + */ + public function count(): int + { + return CustomerDemand::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/adminapi/lists/custom/CustomerDemandSolutionLists.php b/app/adminapi/lists/custom/CustomerDemandSolutionLists.php new file mode 100644 index 000000000..2316a1776 --- /dev/null +++ b/app/adminapi/lists/custom/CustomerDemandSolutionLists.php @@ -0,0 +1,77 @@ + ['theme'], + ]; + } + + + /** + * @notes 获取解决方案列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2023/11/24 21:32 + */ + public function lists(): array + { + return CustomerDemandSolution::where($this->searchWhere) + ->field(['id', 'org_id', 'department_id', 'project_id', 'customer_demand_id', 'theme', 'submission_time']) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select() + ->toArray(); + } + + + /** + * @notes 获取解决方案数量 + * @return int + * @author likeadmin + * @date 2023/11/24 21:32 + */ + public function count(): int + { + return CustomerDemandSolution::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/adminapi/lists/project/CompetitorLists.php b/app/adminapi/lists/project/CompetitorLists.php new file mode 100644 index 000000000..e495f4e96 --- /dev/null +++ b/app/adminapi/lists/project/CompetitorLists.php @@ -0,0 +1,77 @@ + ['project_id', 'competitor_name'], + ]; + } + + + /** + * @notes 获取竞争对手列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2023/11/24 22:01 + */ + public function lists(): array + { + return Competitor::where($this->searchWhere) + ->field(['id', 'org_id', 'department_id', 'project_id', 'customer_demand_id', 'competitor_name', 'competitor_contacts', 'competitor_contacts_phone', 'competitive_power']) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select() + ->toArray(); + } + + + /** + * @notes 获取竞争对手数量 + * @return int + * @author likeadmin + * @date 2023/11/24 22:01 + */ + public function count(): int + { + return Competitor::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/adminapi/lists/project/ProjectEstimateLists.php b/app/adminapi/lists/project/ProjectEstimateLists.php new file mode 100644 index 000000000..7aea51947 --- /dev/null +++ b/app/adminapi/lists/project/ProjectEstimateLists.php @@ -0,0 +1,77 @@ + ['project_id'], + ]; + } + + + /** + * @notes 获取项目概算列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2023/11/24 21:42 + */ + public function lists(): array + { + return ProjectEstimate::where($this->searchWhere) + ->field(['id', 'org_id', 'department_id', 'project_id', 'customer_demand_id', 'estimate_source', 'create_user', 'quotation_date', 'invoice_type', 'technician', 'estimate_amount']) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select() + ->toArray(); + } + + + /** + * @notes 获取项目概算数量 + * @return int + * @author likeadmin + * @date 2023/11/24 21:42 + */ + public function count(): int + { + return ProjectEstimate::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/adminapi/logic/custom/CustomerDemandLogic.php b/app/adminapi/logic/custom/CustomerDemandLogic.php new file mode 100644 index 000000000..4ccfb3445 --- /dev/null +++ b/app/adminapi/logic/custom/CustomerDemandLogic.php @@ -0,0 +1,124 @@ + $params['org_id'], + 'department_id' => $params['department_id'], + 'project_id' => $params['project_id'], + 'theme' => $params['theme'], + 'supplier' => $params['supplier'], + 'supplier_contacts' => $params['supplier_contacts'], + 'importance' => $params['importance'], + 'recording_time' => strtotime($params['recording_time']), + 'demand_content' => $params['demand_content'], + '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 2023/11/24 21:18 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + CustomerDemand::where('id', $params['id'])->update([ + 'org_id' => $params['org_id'], + 'department_id' => $params['department_id'], + 'project_id' => $params['project_id'], + 'theme' => $params['theme'], + 'supplier' => $params['supplier'], + 'supplier_contacts' => $params['supplier_contacts'], + 'importance' => $params['importance'], + 'recording_time' => strtotime($params['recording_time']), + 'demand_content' => $params['demand_content'], + '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 2023/11/24 21:18 + */ + public static function delete(array $params): bool + { + return CustomerDemand::destroy($params['id']); + } + + + /** + * @notes 获取客户需求详情 + * @param $params + * @return array + * @author likeadmin + * @date 2023/11/24 21:18 + */ + public static function detail($params): array + { + return CustomerDemand::findOrEmpty($params['id'])->toArray(); + } +} \ No newline at end of file diff --git a/app/adminapi/logic/custom/CustomerDemandSolutionLogic.php b/app/adminapi/logic/custom/CustomerDemandSolutionLogic.php new file mode 100644 index 000000000..5f66ac9ca --- /dev/null +++ b/app/adminapi/logic/custom/CustomerDemandSolutionLogic.php @@ -0,0 +1,122 @@ + $params['org_id'], + 'department_id' => $params['department_id'], + 'project_id' => $params['project_id'], + 'customer_demand_id' => $params['customer_demand_id'], + 'theme' => $params['theme'], + 'submission_time' => strtotime($params['submission_time']), + 'solution_content' => $params['solution_content'], + 'customer_feedback' => $params['customer_feedback'], + '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 2023/11/24 21:32 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + CustomerDemandSolution::where('id', $params['id'])->update([ + 'org_id' => $params['org_id'], + 'department_id' => $params['department_id'], + 'project_id' => $params['project_id'], + 'customer_demand_id' => $params['customer_demand_id'], + 'theme' => $params['theme'], + 'submission_time' => strtotime($params['submission_time']), + 'solution_content' => $params['solution_content'], + 'customer_feedback' => $params['customer_feedback'], + '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 2023/11/24 21:32 + */ + public static function delete(array $params): bool + { + return CustomerDemandSolution::destroy($params['id']); + } + + + /** + * @notes 获取解决方案详情 + * @param $params + * @return array + * @author likeadmin + * @date 2023/11/24 21:32 + */ + public static function detail($params): array + { + return CustomerDemandSolution::findOrEmpty($params['id'])->toArray(); + } +} \ No newline at end of file diff --git a/app/adminapi/logic/project/CompetitorLogic.php b/app/adminapi/logic/project/CompetitorLogic.php new file mode 100644 index 000000000..a2174ca47 --- /dev/null +++ b/app/adminapi/logic/project/CompetitorLogic.php @@ -0,0 +1,128 @@ + $params['org_id'], + 'department_id' => $params['department_id'], + 'project_id' => $params['project_id'], + 'customer_demand_id' => $params['customer_demand_id'], + 'competitor_name' => $params['competitor_name'], + 'competitor_contacts' => $params['competitor_contacts'], + 'competitor_contacts_phone' => $params['competitor_contacts_phone'], + 'competitive_power' => $params['competitive_power'], + 'competitor_advantages' => $params['competitor_advantages'], + 'competitor_disadvantages' => $params['competitor_disadvantages'], + 'remark' => $params['remark'], + '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 2023/11/24 22:01 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + Competitor::where('id', $params['id'])->update([ + 'org_id' => $params['org_id'], + 'department_id' => $params['department_id'], + 'project_id' => $params['project_id'], + 'customer_demand_id' => $params['customer_demand_id'], + 'competitor_name' => $params['competitor_name'], + 'competitor_contacts' => $params['competitor_contacts'], + 'competitor_contacts_phone' => $params['competitor_contacts_phone'], + 'competitive_power' => $params['competitive_power'], + 'competitor_advantages' => $params['competitor_advantages'], + 'competitor_disadvantages' => $params['competitor_disadvantages'], + 'remark' => $params['remark'], + '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 2023/11/24 22:01 + */ + public static function delete(array $params): bool + { + return Competitor::destroy($params['id']); + } + + + /** + * @notes 获取竞争对手详情 + * @param $params + * @return array + * @author likeadmin + * @date 2023/11/24 22:01 + */ + public static function detail($params): array + { + return Competitor::findOrEmpty($params['id'])->toArray(); + } +} \ No newline at end of file diff --git a/app/adminapi/logic/project/ProjectEstimateLogic.php b/app/adminapi/logic/project/ProjectEstimateLogic.php new file mode 100644 index 000000000..a69a04318 --- /dev/null +++ b/app/adminapi/logic/project/ProjectEstimateLogic.php @@ -0,0 +1,128 @@ + $params['org_id'], + 'department_id' => $params['department_id'], + 'project_id' => $params['project_id'], + 'customer_demand_id' => $params['customer_demand_id'], + 'estimate_source' => $params['estimate_source'], + 'create_user' => $params['create_user'], + 'quotation_date' => strtotime($params['quotation_date']), + 'invoice_type' => $params['invoice_type'], + 'technician' => $params['technician'], + 'estimate_amount' => $params['estimate_amount'], + 'ask' => $params['ask'], + '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 2023/11/24 21:42 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + ProjectEstimate::where('id', $params['id'])->update([ + 'org_id' => $params['org_id'], + 'department_id' => $params['department_id'], + 'project_id' => $params['project_id'], + 'customer_demand_id' => $params['customer_demand_id'], + 'estimate_source' => $params['estimate_source'], + 'create_user' => $params['create_user'], + 'quotation_date' => strtotime($params['quotation_date']), + 'invoice_type' => $params['invoice_type'], + 'technician' => $params['technician'], + 'estimate_amount' => $params['estimate_amount'], + 'ask' => $params['ask'], + '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 2023/11/24 21:42 + */ + public static function delete(array $params): bool + { + return ProjectEstimate::destroy($params['id']); + } + + + /** + * @notes 获取项目概算详情 + * @param $params + * @return array + * @author likeadmin + * @date 2023/11/24 21:42 + */ + public static function detail($params): array + { + return ProjectEstimate::findOrEmpty($params['id'])->toArray(); + } +} \ No newline at end of file diff --git a/app/adminapi/validate/custom/CustomerDemandSolutionValidate.php b/app/adminapi/validate/custom/CustomerDemandSolutionValidate.php new file mode 100644 index 000000000..d6de1776e --- /dev/null +++ b/app/adminapi/validate/custom/CustomerDemandSolutionValidate.php @@ -0,0 +1,94 @@ + 'require', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + ]; + + + /** + * @notes 添加场景 + * @return CustomerDemandSolutionValidate + * @author likeadmin + * @date 2023/11/24 21:32 + */ + public function sceneAdd() + { + return $this->remove('id', true); + } + + + /** + * @notes 编辑场景 + * @return CustomerDemandSolutionValidate + * @author likeadmin + * @date 2023/11/24 21:32 + */ + public function sceneEdit() + { + return $this->only(['id']); + } + + + /** + * @notes 删除场景 + * @return CustomerDemandSolutionValidate + * @author likeadmin + * @date 2023/11/24 21:32 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return CustomerDemandSolutionValidate + * @author likeadmin + * @date 2023/11/24 21:32 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + +} \ No newline at end of file diff --git a/app/adminapi/validate/custom/CustomerDemandValidate.php b/app/adminapi/validate/custom/CustomerDemandValidate.php new file mode 100644 index 000000000..2fe22e408 --- /dev/null +++ b/app/adminapi/validate/custom/CustomerDemandValidate.php @@ -0,0 +1,94 @@ + 'require', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + ]; + + + /** + * @notes 添加场景 + * @return CustomerDemandValidate + * @author likeadmin + * @date 2023/11/24 21:18 + */ + public function sceneAdd() + { + return $this->remove('id', true); + } + + + /** + * @notes 编辑场景 + * @return CustomerDemandValidate + * @author likeadmin + * @date 2023/11/24 21:18 + */ + public function sceneEdit() + { + return $this->only(['id']); + } + + + /** + * @notes 删除场景 + * @return CustomerDemandValidate + * @author likeadmin + * @date 2023/11/24 21:18 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return CustomerDemandValidate + * @author likeadmin + * @date 2023/11/24 21:18 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + +} \ No newline at end of file diff --git a/app/adminapi/validate/project/CompetitorValidate.php b/app/adminapi/validate/project/CompetitorValidate.php new file mode 100644 index 000000000..a055ab94d --- /dev/null +++ b/app/adminapi/validate/project/CompetitorValidate.php @@ -0,0 +1,94 @@ + 'require', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + ]; + + + /** + * @notes 添加场景 + * @return CompetitorValidate + * @author likeadmin + * @date 2023/11/24 22:01 + */ + public function sceneAdd() + { + return $this->remove('id', true); + } + + + /** + * @notes 编辑场景 + * @return CompetitorValidate + * @author likeadmin + * @date 2023/11/24 22:01 + */ + public function sceneEdit() + { + return $this->only(['id']); + } + + + /** + * @notes 删除场景 + * @return CompetitorValidate + * @author likeadmin + * @date 2023/11/24 22:01 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return CompetitorValidate + * @author likeadmin + * @date 2023/11/24 22:01 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + +} \ No newline at end of file diff --git a/app/adminapi/validate/project/ProjectEstimateValidate.php b/app/adminapi/validate/project/ProjectEstimateValidate.php new file mode 100644 index 000000000..9e2a9a51d --- /dev/null +++ b/app/adminapi/validate/project/ProjectEstimateValidate.php @@ -0,0 +1,94 @@ + 'require', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + ]; + + + /** + * @notes 添加场景 + * @return ProjectEstimateValidate + * @author likeadmin + * @date 2023/11/24 21:42 + */ + public function sceneAdd() + { + return $this->remove('id', true); + } + + + /** + * @notes 编辑场景 + * @return ProjectEstimateValidate + * @author likeadmin + * @date 2023/11/24 21:42 + */ + public function sceneEdit() + { + return $this->only(['id']); + } + + + /** + * @notes 删除场景 + * @return ProjectEstimateValidate + * @author likeadmin + * @date 2023/11/24 21:42 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return ProjectEstimateValidate + * @author likeadmin + * @date 2023/11/24 21:42 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + +} \ No newline at end of file diff --git a/app/common/model/custom/CustomerDemand.php b/app/common/model/custom/CustomerDemand.php new file mode 100644 index 000000000..7d4a36089 --- /dev/null +++ b/app/common/model/custom/CustomerDemand.php @@ -0,0 +1,34 @@ +