1.swagger显示bug修改

This commit is contained in:
wr
2023-11-16 10:06:25 +08:00
parent 23930ed27a
commit 69912be8e8
2 changed files with 3 additions and 3 deletions

View File

@@ -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<List<DevDetail>> getDevInfoByIds(@RequestBody List<String> devIds) {
String methodDescribe = getMethodDescribe("getDevInfoByIds");
List<DevDetail> 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<List<TopMsgPO>> getTopMsgInfoByIds(@RequestBody List<String> topIds) {
String methodDescribe = getMethodDescribe("getTopMsgInfoByIds");
List<TopMsgPO> runLineIds = generalDeviceService.getTopMsgInfoByIds(topIds);

View File

@@ -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<List<LineDetailVO.Detail>> getLineDetailByIds(@RequestBody List<String> ids) {
String methodDescribe = getMethodDescribe("getLineDetailByIds");
List<LineDetailVO.Detail> line = lineService.getLineDetailByIds(ids);