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; } }