zhangfeng
2022-10-10 1305d0aa469fe7330fd2f8e9fbb10d95042571be
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package com.gkhy.safePlatform.incidentManage.entity;
 
import java.math.BigDecimal;
 
//事故后果
public class AccidentResultCountDO {
    //部门id
    private Long deptId;
    //年份
    private Integer year;
    //月份
    private Integer month;
    //事故等级
    private Byte accidentLevel;
    //事故数量
    private Integer accidentCount;
    //死亡人数
    private Integer deathCount;
    //重伤人数
    private Integer seriousInjuryCount;
    //轻伤人数
    private Integer minorInjuryCount;
    //经济损失
    private BigDecimal economicLoss;
 
    public Long getDeptId() {
        return deptId;
    }
 
    public void setDeptId(Long deptId) {
        this.deptId = deptId;
    }
 
    public Integer getYear() {
        return year;
    }
 
    public void setYear(Integer year) {
        this.year = year;
    }
 
    public Integer getMonth() {
        return month;
    }
 
    public void setMonth(Integer month) {
        this.month = month;
    }
 
    public Byte getAccidentLevel() {
        return accidentLevel;
    }
 
    public void setAccidentLevel(Byte accidentLevel) {
        this.accidentLevel = accidentLevel;
    }
 
    public Integer getAccidentCount() {
        return accidentCount;
    }
 
    public void setAccidentCount(Integer accidentCount) {
        this.accidentCount = accidentCount;
    }
 
    public Integer getDeathCount() {
        return deathCount;
    }
 
    public void setDeathCount(Integer deathCount) {
        this.deathCount = deathCount;
    }
 
    public Integer getSeriousInjuryCount() {
        return seriousInjuryCount;
    }
 
    public void setSeriousInjuryCount(Integer seriousInjuryCount) {
        this.seriousInjuryCount = seriousInjuryCount;
    }
 
    public Integer getMinorInjuryCount() {
        return minorInjuryCount;
    }
 
    public void setMinorInjuryCount(Integer minorInjuryCount) {
        this.minorInjuryCount = minorInjuryCount;
    }
 
    public BigDecimal getEconomicLoss() {
        return economicLoss;
    }
 
    public void setEconomicLoss(BigDecimal economicLoss) {
        this.economicLoss = economicLoss;
    }
}