|
@ -227,4 +227,18 @@ public class DcEventController extends BaseController |
|
|
public AjaxResult getLinkEvent(@ApiParam(name = "eventId", value = "事件id", required = true) @PathVariable("eventId") String eventId){ |
|
|
public AjaxResult getLinkEvent(@ApiParam(name = "eventId", value = "事件id", required = true) @PathVariable("eventId") String eventId){ |
|
|
return dcEventService.getLinkEvent(eventId); |
|
|
return dcEventService.getLinkEvent(eventId); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* @Description 获取事件数量 |
|
|
|
|
|
* |
|
|
|
|
|
* @author liuwenge |
|
|
|
|
|
* @date 2024/6/6 18:45 |
|
|
|
|
|
* @param type |
|
|
|
|
|
* @return com.ruoyi.common.core.domain.AjaxResult |
|
|
|
|
|
*/ |
|
|
|
|
|
@ApiOperation("获取事件数量") |
|
|
|
|
|
@GetMapping( "/getCountNum/{type}") |
|
|
|
|
|
public AjaxResult getCountNum(@ApiParam(name = "type", value = "类型 1:告警 2:待确认 3:处置中", required = true) @PathVariable("type") String type){ |
|
|
|
|
|
return dcEventService.getCountNum(type); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|