From fe09517300727fd547e9926c9ba407386715435d Mon Sep 17 00:00:00 2001
From: whycxzp <glperry@163.com>
Date: 星期四, 27 三月 2025 15:00:15 +0800
Subject: [PATCH] 东峰接口

---
 src/main/java/com/whyc/controller/DfxtDeviceListController.java |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/src/main/java/com/whyc/controller/DfxtDeviceListController.java b/src/main/java/com/whyc/controller/DfxtDeviceListController.java
index d655fa4..cd74703 100644
--- a/src/main/java/com/whyc/controller/DfxtDeviceListController.java
+++ b/src/main/java/com/whyc/controller/DfxtDeviceListController.java
@@ -5,6 +5,7 @@
 import com.whyc.pojo.DfxtDeviceList;
 import com.whyc.service.DfxtDeviceListService;
 import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.web.bind.annotation.GetMapping;
 import org.springframework.web.bind.annotation.RequestMapping;
@@ -13,13 +14,14 @@
 import java.util.List;
 
 @RestController
-@Api(tags = "涓滃嘲绯荤粺鎵�鏈夎澶囧垪琛�")
+@Api(tags = "涓滃嘲璁惧")
 @RequestMapping("dfxtDeviceList")
 public class DfxtDeviceListController {
 
     @Autowired
     private DfxtDeviceListService service;
 
+    @ApiOperation("鎵�鏈夎澶囧垪琛�")
     @GetMapping("getDeviceList")
     public Response<List<DfxtDeviceDTO>> getDeviceList() {
         return service.getDeviceList();

--
Gitblit v1.9.1