package com.gkhy.safePlatform.incidentManage.model.dto.resp;
|
|
import java.math.BigDecimal;
|
|
//事故后果
|
public class AccidentLevelResultCountRespDTO {
|
//事故等级
|
private Byte accidentLevel;
|
//事故等级名称
|
private String accidentLevelName;
|
//事故数量
|
private Integer accidentCount;
|
//死亡人数
|
private Integer deathCount;
|
//重伤人数
|
private Integer seriousInjuryCount;
|
//轻伤人数
|
private Integer minorInjuryCount;
|
//经济损失
|
private BigDecimal economicLoss;
|
|
public Byte getAccidentLevel() {
|
return accidentLevel;
|
}
|
|
public void setAccidentLevel(Byte accidentLevel) {
|
this.accidentLevel = accidentLevel;
|
}
|
|
public String getAccidentLevelName() {
|
return accidentLevelName;
|
}
|
|
public void setAccidentLevelName(String accidentLevelName) {
|
this.accidentLevelName = accidentLevelName;
|
}
|
|
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;
|
}
|
}
|