From f39edc1584c56ad1fb5ebbdb7c56ef9645325822 Mon Sep 17 00:00:00 2001
From: zhibing.pu <393733352@qq.com>
Date: 星期四, 08 八月 2024 09:16:13 +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/TChargingGunController.java |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/ruoyi-service/ruoyi-chargingPile/src/main/java/com/ruoyi/chargingPile/controller/TChargingGunController.java b/ruoyi-service/ruoyi-chargingPile/src/main/java/com/ruoyi/chargingPile/controller/TChargingGunController.java
index ed3527b..6bb855e 100644
--- a/ruoyi-service/ruoyi-chargingPile/src/main/java/com/ruoyi/chargingPile/controller/TChargingGunController.java
+++ b/ruoyi-service/ruoyi-chargingPile/src/main/java/com/ruoyi/chargingPile/controller/TChargingGunController.java
@@ -38,7 +38,7 @@
     /**
      * 查询充电枪列表
      */
-    @ApiOperation(value = "查询充电枪分页列表")
+    @ApiOperation(tags = {"后台-充电枪"},value = "查询充电枪分页列表")
     @PostMapping(value = "/pageList")
     public AjaxResult<PageInfo<TChargingGunVO>> pageList(@RequestBody TChargingGunQuery query) {
         return AjaxResult.ok(chargingGunService.pageList(query));
@@ -47,7 +47,7 @@
     /**
      * 添加充电枪管理
      */
-    @ApiOperation(value = "添加充电枪")
+    @ApiOperation(tags = {"后台-充电枪"},value = "添加充电枪")
     @PostMapping(value = "/add")
     public AjaxResult<Boolean> add(@RequestBody TChargingGunDTO dto) {
         return AjaxResult.ok(chargingGunService.save(dto));
@@ -56,7 +56,7 @@
     /**
      * 修改充电枪
      */
-    @ApiOperation(value = "修改充电枪")
+    @ApiOperation(tags = {"后台-充电枪"},value = "修改充电枪")
     @PostMapping(value = "/update")
     public AjaxResult<Boolean> update(@RequestBody TChargingGunDTO dto) {
         return AjaxResult.ok(chargingGunService.updateById(dto));
@@ -65,7 +65,7 @@
     /**
      * 查看充电枪详情
      */
-    @ApiOperation(value = "查看充电枪详情")
+    @ApiOperation(tags = {"后台-充电枪"},value = "查看充电枪详情")
     @GetMapping(value = "/getDetailById")
     public AjaxResult<TChargingGun> getDetailById(@RequestParam Integer id) {
         return AjaxResult.ok(chargingGunService.getById(id));
@@ -74,7 +74,7 @@
     /**
      * 删除充电枪
      */
-    @ApiOperation(value = "删除充电枪")
+    @ApiOperation(tags = {"后台-充电枪"},value = "删除充电枪")
     @DeleteMapping(value = "/deleteById")
     public AjaxResult<Boolean> deleteById(@RequestParam Integer id) {
         return AjaxResult.ok(chargingGunService.removeById(id));
@@ -83,7 +83,7 @@
     /**
      * 批量删除充电枪
      */
-    @ApiOperation(value = "批量删除充电枪")
+    @ApiOperation(tags = {"后台-充电枪"},value = "批量删除充电枪")
     @DeleteMapping(value = "/deleteByIds")
     public AjaxResult<Boolean> deleteByIds(@RequestBody List<Integer> ids) {
         return AjaxResult.ok(chargingGunService.removeByIds(ids));
@@ -92,7 +92,7 @@
     /**
      * 结束充电
      */
-    @ApiOperation(value = "结束充电")
+    @ApiOperation(tags = {"后台-充电枪"},value = "结束充电")
     @PostMapping(value = "/stopCharging")
     public AjaxResult<String> stopCharging() {
         // TODO 硬件 结束充电

--
Gitblit v1.7.1