package com.gkhy.safePlatform.riskCtrl.model.dto.resp; import java.math.BigDecimal; public class IncidentMonthReportItemRespDTO { private Long id; //所属报表ID private Long reportId; //事故级别 private Byte level; //事故统计 private Integer count; //导致的死亡数量 private Integer causeDeathCount; //导致重伤的数量 private Integer causeHeavyInjureCount; //导致轻伤的数量 private Integer causeLightInjureCount; //经济损失 private BigDecimal loss; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Long getReportId() { return reportId; } public void setReportId(Long reportId) { this.reportId = reportId; } public Byte getLevel() { return level; } public void setLevel(Byte level) { this.level = level; } public Integer getCount() { return count; } public void setCount(Integer count) { this.count = count; } 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; } }