1.swagger显示bug修改
This commit is contained in:
@@ -312,7 +312,7 @@ public class GeneralDeviceInfoController extends BaseController {
|
|||||||
@OperateInfo(info = LogEnum.BUSINESS_COMMON)
|
@OperateInfo(info = LogEnum.BUSINESS_COMMON)
|
||||||
@PostMapping("/getDevInfoByIds")
|
@PostMapping("/getDevInfoByIds")
|
||||||
@ApiOperation("根据终端id集合获取终端信息")
|
@ApiOperation("根据终端id集合获取终端信息")
|
||||||
@ApiImplicitParam(name = "deptId", value = "单位部门索引", required = true)
|
@ApiImplicitParam(name = "devIds", value = "单位部门索引", required = true)
|
||||||
public HttpResult<List<DevDetail>> getDevInfoByIds(@RequestBody List<String> devIds) {
|
public HttpResult<List<DevDetail>> getDevInfoByIds(@RequestBody List<String> devIds) {
|
||||||
String methodDescribe = getMethodDescribe("getDevInfoByIds");
|
String methodDescribe = getMethodDescribe("getDevInfoByIds");
|
||||||
List<DevDetail> runLineIds = generalDeviceService.getDevInfoByIds(devIds);
|
List<DevDetail> runLineIds = generalDeviceService.getDevInfoByIds(devIds);
|
||||||
@@ -323,7 +323,7 @@ public class GeneralDeviceInfoController extends BaseController {
|
|||||||
@OperateInfo(info = LogEnum.BUSINESS_COMMON)
|
@OperateInfo(info = LogEnum.BUSINESS_COMMON)
|
||||||
@PostMapping("/getTopMsgInfoByIds")
|
@PostMapping("/getTopMsgInfoByIds")
|
||||||
@ApiOperation("根据终端id集合获取终端信息")
|
@ApiOperation("根据终端id集合获取终端信息")
|
||||||
@ApiImplicitParam(name = "deptId", value = "单位部门索引", required = true)
|
@ApiImplicitParam(name = "topIds", value = "单位部门索引", required = true)
|
||||||
public HttpResult<List<TopMsgPO>> getTopMsgInfoByIds(@RequestBody List<String> topIds) {
|
public HttpResult<List<TopMsgPO>> getTopMsgInfoByIds(@RequestBody List<String> topIds) {
|
||||||
String methodDescribe = getMethodDescribe("getTopMsgInfoByIds");
|
String methodDescribe = getMethodDescribe("getTopMsgInfoByIds");
|
||||||
List<TopMsgPO> runLineIds = generalDeviceService.getTopMsgInfoByIds(topIds);
|
List<TopMsgPO> runLineIds = generalDeviceService.getTopMsgInfoByIds(topIds);
|
||||||
|
|||||||
@@ -436,7 +436,7 @@ public class LineController extends BaseController {
|
|||||||
|
|
||||||
@PostMapping("/getLineDetailByIds")
|
@PostMapping("/getLineDetailByIds")
|
||||||
@ApiOperation("根据监测点id获取监测点集合")
|
@ApiOperation("根据监测点id获取监测点集合")
|
||||||
@ApiImplicitParam(name = "param", value = "参数实体", required = true)
|
@ApiImplicitParam(name = "ids", value = "参数实体", required = true)
|
||||||
public HttpResult<List<LineDetailVO.Detail>> getLineDetailByIds(@RequestBody List<String> ids) {
|
public HttpResult<List<LineDetailVO.Detail>> getLineDetailByIds(@RequestBody List<String> ids) {
|
||||||
String methodDescribe = getMethodDescribe("getLineDetailByIds");
|
String methodDescribe = getMethodDescribe("getLineDetailByIds");
|
||||||
List<LineDetailVO.Detail> line = lineService.getLineDetailByIds(ids);
|
List<LineDetailVO.Detail> line = lineService.getLineDetailByIds(ids);
|
||||||
|
|||||||
Reference in New Issue
Block a user