forked from luyan/epmet-cloud-lingshan
7 changed files with 404 additions and 131 deletions
@ -0,0 +1,35 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Map; |
|||
|
|||
/** |
|||
* @author yan Lu |
|||
* @description 事件分析数量和分类统计数量 |
|||
* @create 2023/5/17 15:15 |
|||
*/ |
|||
@Data |
|||
public class EventAnalysisResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
/** |
|||
* 即诉即办数量 |
|||
*/ |
|||
private Integer jiSuJiBan; |
|||
/** |
|||
* 直通联办数量 |
|||
*/ |
|||
private Integer zhiTongLianBan; |
|||
/** |
|||
* 网格化平台数量 |
|||
*/ |
|||
|
|||
private Integer wangGeHua; |
|||
/** |
|||
* 分类统计数量 |
|||
*/ |
|||
private Map<String, Integer> categoryCount; |
|||
|
|||
} |
@ -0,0 +1,49 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @author yan Lu |
|||
* @description 事件量和占比率 |
|||
* @create 2023/5/17 14:50 |
|||
*/ |
|||
|
|||
@Data |
|||
public class EventRateResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 总量 |
|||
*/ |
|||
private Integer total; |
|||
|
|||
/** |
|||
* 红灯数量 |
|||
*/ |
|||
private Integer hongDeng; |
|||
/** |
|||
* 红灯占比 |
|||
*/ |
|||
private Double hongDengRate; |
|||
/** |
|||
* 黄灯数量 |
|||
*/ |
|||
private Integer huangDeng; |
|||
/** |
|||
* 黄灯占比 |
|||
*/ |
|||
private Double huangDengRate; |
|||
/** |
|||
* 蓝灯数量 |
|||
*/ |
|||
private Integer lanDeng; |
|||
/** |
|||
* 蓝灯占比 |
|||
*/ |
|||
private Double lanDengRate; |
|||
|
|||
|
|||
} |
Loading…
Reference in new issue