package com.gkhy.safePlatform.riskCtrl.model.dto.resp; public class PreventMonthReportDetailRespDTO { //所属报表ID private Long reportId; //隐患总数 private Integer riskTotalCount; //导致死亡的数量 private Integer deathCount; //导致重伤的数量 private Integer heavyInjureCount; //导致轻伤的数量 private Integer lightInjureCount; //重大隐患数量 private Integer heavyRiskCount; //一般隐患数量 private Integer lightRiskCount; //重大隐患已经整改数量 private Integer heavyRiskFinishCount; //一般隐患已经整改数量 private Integer lightRiskFinishCount; public Long getReportId() { return reportId; } public void setReportId(Long reportId) { this.reportId = reportId; } public Integer getRiskTotalCount() { return riskTotalCount; } public void setRiskTotalCount(Integer riskTotalCount) { this.riskTotalCount = riskTotalCount; } public Integer getDeathCount() { return deathCount; } public void setDeathCount(Integer deathCount) { this.deathCount = deathCount; } public Integer getHeavyInjureCount() { return heavyInjureCount; } public void setHeavyInjureCount(Integer heavyInjureCount) { this.heavyInjureCount = heavyInjureCount; } public Integer getLightInjureCount() { return lightInjureCount; } public void setLightInjureCount(Integer lightInjureCount) { this.lightInjureCount = lightInjureCount; } public Integer getHeavyRiskCount() { return heavyRiskCount; } public void setHeavyRiskCount(Integer heavyRiskCount) { this.heavyRiskCount = heavyRiskCount; } public Integer getLightRiskCount() { return lightRiskCount; } public void setLightRiskCount(Integer lightRiskCount) { this.lightRiskCount = lightRiskCount; } public Integer getHeavyRiskFinishCount() { return heavyRiskFinishCount; } public void setHeavyRiskFinishCount(Integer heavyRiskFinishCount) { this.heavyRiskFinishCount = heavyRiskFinishCount; } public Integer getLightRiskFinishCount() { return lightRiskFinishCount; } public void setLightRiskFinishCount(Integer lightRiskFinishCount) { this.lightRiskFinishCount = lightRiskFinishCount; } }