DangerEventOverviewVO.java
1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package com.skua.modules.emergency.vo;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
* @auther kangwei
* @create 2025-03-05-13:39
*/
@Data
public class DangerEventOverviewVO {
/**厂站ID*/
@ApiModelProperty(value = "厂站ID")
private String departId;
/**厂站名称*/
@ApiModelProperty(value = "厂站名称")
private String departName;
/**隐患处理数*/
@ApiModelProperty(value = "隐患处理中")
private Integer yhNoHandleNum ;
/**隐患已处理数*/
@ApiModelProperty(value = "隐患已处理数")
private Integer yhHandleNum;
@ApiModelProperty(value = "'风险排查处理中'")
private Integer fxpcNoHandleNum;
@ApiModelProperty(value = "'风险排查:已经处理'")
private Integer fxpcHandleNum;
/**异常数*/
@ApiModelProperty(value = "'风险区域数量'")
private Integer fxqyNum;
@ApiModelProperty(value = "'风险点数量'")
private Integer fxdNum;
@ApiModelProperty(value = "''隐患排查检查项''")
private Integer jcxNum;
public DangerEventOverviewVO() {
}
public DangerEventOverviewVO(Integer yhNoHandleNum, Integer yhHandleNum, Integer fxpcNoHandleNum, Integer fxpcHandleNum, Integer fxqyNum, Integer fxdNum, Integer jcxNum) {
this.yhNoHandleNum = yhNoHandleNum;
this.yhHandleNum = yhHandleNum;
this.fxpcNoHandleNum = fxpcNoHandleNum;
this.fxpcHandleNum = fxpcHandleNum;
this.fxqyNum = fxqyNum;
this.fxdNum = fxdNum;
this.jcxNum = jcxNum;
}
}