From f7b93e1f218588f9571de7a79f16961b3863ef6b Mon Sep 17 00:00:00 2001 From: yaooo <272523191@qq.com> Date: Wed, 20 Dec 2023 16:23:11 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=88=A9=E7=8E=87=E8=AE=BE?= =?UTF-8?q?=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/bank/RateSettingController.php | 108 +++++++++++++++++ app/adminapi/lists/bank/RateSettingLists.php | 77 +++++++++++++ app/adminapi/logic/bank/RateSettingLogic.php | 109 ++++++++++++++++++ .../validate/bank/RateSettingValidate.php | 98 ++++++++++++++++ app/common/model/bank/RateSetting.php | 34 ++++++ 5 files changed, 426 insertions(+) create mode 100644 app/adminapi/controller/bank/RateSettingController.php create mode 100644 app/adminapi/lists/bank/RateSettingLists.php create mode 100644 app/adminapi/logic/bank/RateSettingLogic.php create mode 100644 app/adminapi/validate/bank/RateSettingValidate.php create mode 100644 app/common/model/bank/RateSetting.php diff --git a/app/adminapi/controller/bank/RateSettingController.php b/app/adminapi/controller/bank/RateSettingController.php new file mode 100644 index 000000000..449ab3173 --- /dev/null +++ b/app/adminapi/controller/bank/RateSettingController.php @@ -0,0 +1,108 @@ +dataLists(new RateSettingLists()); + } + + + /** + * @notes 添加 + * @return \think\response\Json + * @author likeadmin + * @date 2023/12/20 16:22 + */ + public function add() + { + $params = (new RateSettingValidate())->post()->goCheck('add'); + $result = RateSettingLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(RateSettingLogic::getError()); + } + + + /** + * @notes 编辑 + * @return \think\response\Json + * @author likeadmin + * @date 2023/12/20 16:22 + */ + public function edit() + { + $params = (new RateSettingValidate())->post()->goCheck('edit'); + $result = RateSettingLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(RateSettingLogic::getError()); + } + + + /** + * @notes 删除 + * @return \think\response\Json + * @author likeadmin + * @date 2023/12/20 16:22 + */ + public function delete() + { + $params = (new RateSettingValidate())->post()->goCheck('delete'); + RateSettingLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取详情 + * @return \think\response\Json + * @author likeadmin + * @date 2023/12/20 16:22 + */ + public function detail() + { + $params = (new RateSettingValidate())->goCheck('detail'); + $result = RateSettingLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/adminapi/lists/bank/RateSettingLists.php b/app/adminapi/lists/bank/RateSettingLists.php new file mode 100644 index 000000000..712ba5d2c --- /dev/null +++ b/app/adminapi/lists/bank/RateSettingLists.php @@ -0,0 +1,77 @@ + ['starting_effective_date'], + ]; + } + + + /** + * @notes 获取列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2023/12/20 16:22 + */ + public function lists(): array + { + return RateSetting::where($this->searchWhere) + ->field(['id', 'starting_effective_date', 'annualized_interest_rate', 'remark']) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select() + ->toArray(); + } + + + /** + * @notes 获取数量 + * @return int + * @author likeadmin + * @date 2023/12/20 16:22 + */ + public function count(): int + { + return RateSetting::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/adminapi/logic/bank/RateSettingLogic.php b/app/adminapi/logic/bank/RateSettingLogic.php new file mode 100644 index 000000000..da688ea60 --- /dev/null +++ b/app/adminapi/logic/bank/RateSettingLogic.php @@ -0,0 +1,109 @@ + $params['starting_effective_date'], + 'annualized_interest_rate' => $params['annualized_interest_rate'], + ]); + + 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/12/20 16:22 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + RateSetting::where('id', $params['id'])->update([ + 'starting_effective_date' => $params['starting_effective_date'], + 'annualized_interest_rate' => $params['annualized_interest_rate'], + 'remark' => $params['remark'], + ]); + + 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/12/20 16:22 + */ + public static function delete(array $params): bool + { + return RateSetting::destroy($params['id']); + } + + + /** + * @notes 获取详情 + * @param $params + * @return array + * @author likeadmin + * @date 2023/12/20 16:22 + */ + public static function detail($params): array + { + return RateSetting::findOrEmpty($params['id'])->toArray(); + } +} \ No newline at end of file diff --git a/app/adminapi/validate/bank/RateSettingValidate.php b/app/adminapi/validate/bank/RateSettingValidate.php new file mode 100644 index 000000000..8a0c4abd5 --- /dev/null +++ b/app/adminapi/validate/bank/RateSettingValidate.php @@ -0,0 +1,98 @@ + 'require', + 'starting_effective_date' => 'require', + 'annualized_interest_rate' => 'require', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'starting_effective_date' => '生效日期', + 'annualized_interest_rate' => '年化利率(', + ]; + + + /** + * @notes 添加场景 + * @return RateSettingValidate + * @author likeadmin + * @date 2023/12/20 16:22 + */ + public function sceneAdd() + { + return $this->only(['starting_effective_date','annualized_interest_rate']); + } + + + /** + * @notes 编辑场景 + * @return RateSettingValidate + * @author likeadmin + * @date 2023/12/20 16:22 + */ + public function sceneEdit() + { + return $this->only(['id','starting_effective_date','annualized_interest_rate']); + } + + + /** + * @notes 删除场景 + * @return RateSettingValidate + * @author likeadmin + * @date 2023/12/20 16:22 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return RateSettingValidate + * @author likeadmin + * @date 2023/12/20 16:22 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + +} \ No newline at end of file diff --git a/app/common/model/bank/RateSetting.php b/app/common/model/bank/RateSetting.php new file mode 100644 index 000000000..2e9ac2dcf --- /dev/null +++ b/app/common/model/bank/RateSetting.php @@ -0,0 +1,34 @@ +