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