package com.gkhy.safePlatform.riskCtrl.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.time.LocalDate;
|
import java.time.LocalDateTime;
|
|
/**
|
* 隐患统计报表
|
*/
|
@TableName("prevent_month_report_detail")
|
public class PreventMonthReportDetail {
|
|
//所属报表ID
|
@TableId(type = IdType.INPUT)
|
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;
|
}
|
|
}
|