|
|
@ -601,6 +601,20 @@ public class IcEventController { |
|
|
|
return new Result<EventRateResultDTO>().ok(icEventService.getEventRate(orgId, orgType)); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param * @param null |
|
|
|
* @return Result |
|
|
|
* @throws |
|
|
|
* @description 获取事件数量和占比 大屏 |
|
|
|
* @author yan Lu |
|
|
|
* @date 2023/5/17 14:49 |
|
|
|
*/ |
|
|
|
@GetMapping("yifengScreen/getEventRate") |
|
|
|
public Result<EventRateResultDTO> getEventRateYF(@RequestParam("orgId") String orgId, |
|
|
|
@RequestParam("orgType") String orgType) { |
|
|
|
return new Result<EventRateResultDTO>().ok(icEventService.getEventRate(orgId, orgType)); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param |
|
|
|
* @return Result<EventAnalysisResultDTO> |
|
|
|