From 69912be8e8253c315749d3cf6060157f3386d86b Mon Sep 17 00:00:00 2001 From: wr <1754607820@qq.com> Date: Thu, 16 Nov 2023 10:06:25 +0800 Subject: [PATCH] =?UTF-8?q?1.swagger=E6=98=BE=E7=A4=BAbug=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../device/pq/controller/GeneralDeviceInfoController.java | 4 ++-- .../java/com/njcn/device/pq/controller/LineController.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pqs-device/pq-device/pq-device-boot/src/main/java/com/njcn/device/pq/controller/GeneralDeviceInfoController.java b/pqs-device/pq-device/pq-device-boot/src/main/java/com/njcn/device/pq/controller/GeneralDeviceInfoController.java index 4a1e5fdef..c4704fe40 100644 --- a/pqs-device/pq-device/pq-device-boot/src/main/java/com/njcn/device/pq/controller/GeneralDeviceInfoController.java +++ b/pqs-device/pq-device/pq-device-boot/src/main/java/com/njcn/device/pq/controller/GeneralDeviceInfoController.java @@ -312,7 +312,7 @@ public class GeneralDeviceInfoController extends BaseController { @OperateInfo(info = LogEnum.BUSINESS_COMMON) @PostMapping("/getDevInfoByIds") @ApiOperation("根据终端id集合获取终端信息") - @ApiImplicitParam(name = "deptId", value = "单位部门索引", required = true) + @ApiImplicitParam(name = "devIds", value = "单位部门索引", required = true) public HttpResult> getDevInfoByIds(@RequestBody List devIds) { String methodDescribe = getMethodDescribe("getDevInfoByIds"); List runLineIds = generalDeviceService.getDevInfoByIds(devIds); @@ -323,7 +323,7 @@ public class GeneralDeviceInfoController extends BaseController { @OperateInfo(info = LogEnum.BUSINESS_COMMON) @PostMapping("/getTopMsgInfoByIds") @ApiOperation("根据终端id集合获取终端信息") - @ApiImplicitParam(name = "deptId", value = "单位部门索引", required = true) + @ApiImplicitParam(name = "topIds", value = "单位部门索引", required = true) public HttpResult> getTopMsgInfoByIds(@RequestBody List topIds) { String methodDescribe = getMethodDescribe("getTopMsgInfoByIds"); List runLineIds = generalDeviceService.getTopMsgInfoByIds(topIds); diff --git a/pqs-device/pq-device/pq-device-boot/src/main/java/com/njcn/device/pq/controller/LineController.java b/pqs-device/pq-device/pq-device-boot/src/main/java/com/njcn/device/pq/controller/LineController.java index c727f6a3d..4c4dd0d9a 100644 --- a/pqs-device/pq-device/pq-device-boot/src/main/java/com/njcn/device/pq/controller/LineController.java +++ b/pqs-device/pq-device/pq-device-boot/src/main/java/com/njcn/device/pq/controller/LineController.java @@ -436,7 +436,7 @@ public class LineController extends BaseController { @PostMapping("/getLineDetailByIds") @ApiOperation("根据监测点id获取监测点集合") - @ApiImplicitParam(name = "param", value = "参数实体", required = true) + @ApiImplicitParam(name = "ids", value = "参数实体", required = true) public HttpResult> getLineDetailByIds(@RequestBody List ids) { String methodDescribe = getMethodDescribe("getLineDetailByIds"); List line = lineService.getLineDetailByIds(ids);