|
@@ -118,5 +118,21 @@ public class WarningController {
|
|
|
return ajax;
|
|
|
}
|
|
|
|
|
|
+ @PostMapping("/getLonShutdownevent")
|
|
|
+ @ResponseBody
|
|
|
+ @ApiOperation(value = "长停事件查询", notes = "长停事件查询")
|
|
|
+ public AjaxResult getLonShutdownevent(@RequestParam(value = "pageNum", required = true) Integer pageNum,
|
|
|
+ @RequestParam(value = "pageSize", required = true) Integer pageSize,
|
|
|
+ @RequestParam(value = "wpId", required = false) String wpId,
|
|
|
+ @RequestParam(value = "wtId", required = false) String wtId,
|
|
|
+ @RequestParam(value = "beginDate", required = true) String beginDate,
|
|
|
+ @RequestParam(value = "endDate", required = true) String endDate,
|
|
|
+ @RequestParam(value = "type", required = false) String type) throws Exception {
|
|
|
+ AjaxResult ajax = warningService.getLongShutdownevent(pageNum, pageSize, wpId, wtId,beginDate, endDate, type);
|
|
|
+
|
|
|
+ return ajax;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
/*****************************************************************************************************************/
|
|
|
}
|