Commit 78aac8fe authored by wujiang's avatar wujiang

跑马灯添加过滤

parent b5a0e298
...@@ -87,10 +87,10 @@ public interface McbWarningFeign { ...@@ -87,10 +87,10 @@ public interface McbWarningFeign {
* 跑马灯列表数据分页查询 * 跑马灯列表数据分页查询
*/ */
@GetMapping(value = "/monitor/overview/getLampListPage") @GetMapping(value = "/monitor/overview/getLampListPage")
FeignClientResult getLampListPage(@RequestParam String questionRectificationStatus, FeignClientResult getLampListPage(@RequestParam(value = "questionRectificationStatus", required = false) String questionRectificationStatus,
@RequestParam(value = "warningSourceType", required = false) String warningSourceType, @RequestParam(value = "warningSourceType", required = false) String warningSourceType,
@RequestParam(value = "objectName", required = false) String objectName, @RequestParam(value = "objectName", required = false) String objectName,
@RequestParam("codes") List<String> codes, @RequestParam(value = "codes", required = false) List<String> codes,
@RequestParam(value = "operator", defaultValue = "=") String operator, @RequestParam(value = "operator", defaultValue = "=") String operator,
@RequestParam("current") Long current, @RequestParam("size") Long size); @RequestParam("current") Long current, @RequestParam("size") Long size);
...@@ -98,10 +98,10 @@ public interface McbWarningFeign { ...@@ -98,10 +98,10 @@ public interface McbWarningFeign {
* 跑马灯列表数据查询 * 跑马灯列表数据查询
*/ */
@GetMapping("/monitor/overview/getLampList") @GetMapping("/monitor/overview/getLampList")
FeignClientResult getLampList(@RequestParam String questionRectificationStatus, FeignClientResult getLampList(@RequestParam(value = "questionRectificationStatus", required = false) String questionRectificationStatus,
@RequestParam(value = "warningSourceType", required = false) String warningSourceType, @RequestParam(value = "warningSourceType", required = false) String warningSourceType,
@RequestParam(value = "objectName", required = false) String objectName, @RequestParam(value = "objectName", required = false) String objectName,
@RequestParam("codes") List<String> codes, @RequestParam(value = "codes", required = false) List<String> codes,
@RequestParam(value = "operator", defaultValue = "=") String operator); @RequestParam(value = "operator", defaultValue = "=") String operator);
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment