From 6ed95e119bb127488afd9b0eaf98cc7b170a5cef Mon Sep 17 00:00:00 2001 From: 无关风月 <443237572@qq.com> Date: 星期四, 08 八月 2024 09:20:03 +0800 Subject: [PATCH] Merge branch 'master' of http://120.76.84.145:10101/gitblit/r/java/mx_charging_pile --- ruoyi-service/ruoyi-chargingPile/src/main/java/com/ruoyi/chargingPile/controller/TAccountingStrategyController.java | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ruoyi-service/ruoyi-chargingPile/src/main/java/com/ruoyi/chargingPile/controller/TAccountingStrategyController.java b/ruoyi-service/ruoyi-chargingPile/src/main/java/com/ruoyi/chargingPile/controller/TAccountingStrategyController.java index f5ccd02..ee1cceb 100644 --- a/ruoyi-service/ruoyi-chargingPile/src/main/java/com/ruoyi/chargingPile/controller/TAccountingStrategyController.java +++ b/ruoyi-service/ruoyi-chargingPile/src/main/java/com/ruoyi/chargingPile/controller/TAccountingStrategyController.java @@ -46,7 +46,7 @@ /** * 查询计费策略列表 */ - @ApiOperation(value = "查询计费策略分页列表") + @ApiOperation(tags = {"后台-计费策略"},value = "查询计费策略分页列表") @PostMapping(value = "/pageList") public AjaxResult<PageInfo<TAccountingStrategyVO>> pageList(@RequestBody TAccountingStrategyQuery query) { return AjaxResult.ok(accountingStrategyService.pageList(query)); @@ -55,7 +55,7 @@ /** * 查询计费策略明细列表 */ - @ApiOperation(value = "查询计费策略明细列表") + @ApiOperation(tags = {"后台-计费策略"},value = "查询计费策略明细列表") @GetMapping(value = "/queryAccountingStrategyDetailByStrategyId") public AjaxResult<List<TAccountingStrategyDetailVO>> queryAccountingStrategyDetailByStrategyId(@RequestParam Integer strategyId) { List<TAccountingStrategyDetailVO> list = accountingStrategyDetailService.queryAccountingStrategyDetailByStrategyId(strategyId); @@ -68,7 +68,7 @@ /** * 添加计费策略管理 */ - @ApiOperation(value = "添加计费策略") + @ApiOperation(tags = {"后台-计费策略"},value = "添加计费策略") @PostMapping(value = "/add") public AjaxResult<Boolean> add(@RequestBody TAccountingStrategyDTO dto) { accountingStrategyService.save(dto); @@ -81,7 +81,7 @@ /** * 修改计费策略 */ - @ApiOperation(value = "修改计费策略") + @ApiOperation(tags = {"后台-计费策略"},value = "修改计费策略") @PostMapping(value = "/update") public AjaxResult<Boolean> update(@RequestBody TAccountingStrategyDTO dto) { // 删除计费策略明细信息 @@ -97,7 +97,7 @@ /** * 查看计费策略详情 */ - @ApiOperation(value = "查看计费策略详情") + @ApiOperation(tags = {"后台-计费策略"},value = "查看计费策略详情") @GetMapping(value = "/getDetailById") public AjaxResult<TAccountingStrategy> getDetailById(@RequestParam Integer id) { return AjaxResult.ok(accountingStrategyService.getById(id)); @@ -106,7 +106,7 @@ /** * 删除计费策略 */ - @ApiOperation(value = "删除计费策略") + @ApiOperation(tags = {"后台-计费策略"},value = "删除计费策略") @DeleteMapping(value = "/deleteById") public AjaxResult<Boolean> deleteById(@RequestParam Integer id) { // 刪除计费策略明细信息 @@ -118,7 +118,7 @@ /** * 批量删除计费策略 */ - @ApiOperation(value = "批量删除计费策略") + @ApiOperation(tags = {"后台-计费策略"},value = "批量删除计费策略") @DeleteMapping(value = "/deleteByIds") public AjaxResult<Boolean> deleteByIds(@RequestBody List<Integer> ids) { // 刪除计费策略明细信息 -- Gitblit v1.7.1