郑永安
2023-06-19 7a6abd05683528032687c75e80e0bd2030a3e46c
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package com.gkhy.safePlatform.riskCtrl.model.bo;
 
import java.math.BigDecimal;
 
public class IncidentCauseCountBO {
 
    //事故级别
    private Byte level;
 
    //事故数量
    private Integer accidentCount;
 
    //导致的死亡数量
    private Integer causeDeathCount;
 
    //导致重伤的数量
    private Integer causeHeavyInjureCount;
 
    //导致轻伤的数量
    private Integer causeLightInjureCount;
 
    //经济损失
    private BigDecimal loss;
 
    public void init(){
        this.accidentCount = 0;
        this.causeDeathCount = 0;
        this.causeHeavyInjureCount = 0;
        this.causeLightInjureCount = 0;
        this.loss = BigDecimal.ZERO;
    }
 
    public Byte getLevel() {
        return level;
    }
 
    public void setLevel(Byte level) {
        this.level = level;
    }
 
    public Integer getAccidentCount() {
        return accidentCount;
    }
 
    public void setAccidentCount(Integer accidentCount) {
        this.accidentCount = accidentCount;
    }
 
    public Integer getCauseDeathCount() {
        return causeDeathCount;
    }
 
    public void setCauseDeathCount(Integer causeDeathCount) {
        this.causeDeathCount = causeDeathCount;
    }
 
    public Integer getCauseHeavyInjureCount() {
        return causeHeavyInjureCount;
    }
 
    public void setCauseHeavyInjureCount(Integer causeHeavyInjureCount) {
        this.causeHeavyInjureCount = causeHeavyInjureCount;
    }
 
    public Integer getCauseLightInjureCount() {
        return causeLightInjureCount;
    }
 
    public void setCauseLightInjureCount(Integer causeLightInjureCount) {
        this.causeLightInjureCount = causeLightInjureCount;
    }
 
    public BigDecimal getLoss() {
        return loss;
    }
 
    public void setLoss(BigDecimal loss) {
        this.loss = loss;
    }
}