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.math.BigDecimal;
|
import java.time.LocalDate;
|
import java.util.Date;
|
|
@TableName("spi_report_detail")
|
public class SpiReportDetail {
|
|
//主键
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
//企业ID
|
private Long eid;
|
|
//部门ID
|
private Long depId;
|
|
//年份
|
private Integer year;
|
|
//月份
|
private Integer month;
|
|
//统计的开始日期
|
private LocalDate countBeginDate;
|
|
//统计的最后日期
|
private LocalDate countEndDate;
|
|
//重大隐患总数
|
private Integer riskLv1;
|
|
//重大隐患整改完成情况
|
private Integer riskLv1Deal;
|
|
//重大隐患造成的死亡数量
|
private Integer riskLv1Dmg1;
|
|
//重大隐患造成的重伤数量
|
private Integer riskLv1Dmg2;
|
|
//重大隐患造成的轻伤数量
|
private Integer riskLv1Dmg3;
|
|
//一般隐患总数
|
private Integer riskLv2;
|
|
//一般隐患整改完成情况
|
private Integer riskLv2Deal;
|
|
//一般隐患造成的死亡数量
|
private Integer riskLv2Dmg1;
|
|
//一般隐患造成的重伤数量
|
private Integer riskLv2Dmg2;
|
|
//一般隐患造成的轻伤数量
|
private Integer riskLv2Dmg3;
|
|
//应急演练的次数
|
private Integer emgcPracticeCount;
|
|
//该月最后一次演练时间
|
private Date lastPracticeTime;
|
|
//特别重大事故总数
|
private Integer accidentL1;
|
|
//特别重大事故造成的死亡数量
|
private Integer accidentL1Dmg1;
|
|
//特别重大事故造成的重伤数量
|
private Integer accidentL1Dmg2;
|
|
//特别重大事故造成的轻伤数量
|
private Integer accidentL1Dmg3;
|
|
//特别重大事故造成的经济损失
|
private BigDecimal accidentL1Loss;
|
|
//重大事故总数
|
private Integer accidentL2;
|
|
//重大事故造成的死亡数量
|
private Integer accidentL2Dmg1;
|
|
//重大事故造成的重伤数量
|
private Integer accidentL2Dmg2;
|
|
//重大事故造成的轻伤数量
|
private Integer accidentL2Dmg3;
|
|
//重大事故造成的经济损失
|
private BigDecimal accidentL2Loss;
|
|
//较大事故总数
|
private Integer accidentL3;
|
|
//较大事故造成的死亡数量
|
private Integer accidentL3Dmg1;
|
|
//较大事故造成的重伤数量
|
private Integer accidentL3Dmg2;
|
|
//较大事故造成的轻伤数量
|
private Integer accidentL3Dmg3;
|
|
//较大事故造成的经济损失
|
private BigDecimal accidentL3Loss;
|
|
//一般事故总数
|
private Integer accidentL4;
|
|
//一般事故造成的死亡数量
|
private Integer accidentL4Dmg1;
|
|
//一般事故造成的重伤数量
|
private Integer accidentL4Dmg2;
|
|
//一般事故造成的轻伤数量
|
private Integer accidentL4Dmg3;
|
|
//一般事故造成的经济损失
|
private BigDecimal accidentL4Loss;
|
|
//未遂事故总数
|
private Integer accidentL5;
|
|
//未遂事故造成的死亡数量
|
private Integer accidentL5Dmg1;
|
|
//未遂事故造成的重伤数量
|
private Integer accidentL5Dmg2;
|
|
//未遂事故造成的轻伤数量
|
private Integer accidentL5Dmg3;
|
|
//未遂事故造成的经济损失
|
private BigDecimal accidentL5Loss;
|
|
//创建时间
|
private Date gmtCreate;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getEid() {
|
return eid;
|
}
|
|
public void setEid(Long eid) {
|
this.eid = eid;
|
}
|
|
public Long getDepId() {
|
return depId;
|
}
|
|
public void setDepId(Long depId) {
|
this.depId = depId;
|
}
|
|
public Integer getYear() {
|
return year;
|
}
|
|
public void setYear(Integer year) {
|
this.year = year;
|
}
|
|
public Integer getMonth() {
|
return month;
|
}
|
|
public void setMonth(Integer month) {
|
this.month = month;
|
}
|
|
public LocalDate getCountBeginDate() {
|
return countBeginDate;
|
}
|
|
public void setCountBeginDate(LocalDate countBeginDate) {
|
this.countBeginDate = countBeginDate;
|
}
|
|
public LocalDate getCountEndDate() {
|
return countEndDate;
|
}
|
|
public void setCountEndDate(LocalDate countEndDate) {
|
this.countEndDate = countEndDate;
|
}
|
|
public Integer getRiskLv1() {
|
return riskLv1;
|
}
|
|
public void setRiskLv1(Integer riskLv1) {
|
this.riskLv1 = riskLv1;
|
}
|
|
public Integer getRiskLv1Deal() {
|
return riskLv1Deal;
|
}
|
|
public void setRiskLv1Deal(Integer riskLv1Deal) {
|
this.riskLv1Deal = riskLv1Deal;
|
}
|
|
public Integer getRiskLv1Dmg1() {
|
return riskLv1Dmg1;
|
}
|
|
public void setRiskLv1Dmg1(Integer riskLv1Dmg1) {
|
this.riskLv1Dmg1 = riskLv1Dmg1;
|
}
|
|
public Integer getRiskLv1Dmg2() {
|
return riskLv1Dmg2;
|
}
|
|
public void setRiskLv1Dmg2(Integer riskLv1Dmg2) {
|
this.riskLv1Dmg2 = riskLv1Dmg2;
|
}
|
|
public Integer getRiskLv1Dmg3() {
|
return riskLv1Dmg3;
|
}
|
|
public void setRiskLv1Dmg3(Integer riskLv1Dmg3) {
|
this.riskLv1Dmg3 = riskLv1Dmg3;
|
}
|
|
public Integer getRiskLv2() {
|
return riskLv2;
|
}
|
|
public void setRiskLv2(Integer riskLv2) {
|
this.riskLv2 = riskLv2;
|
}
|
|
public Integer getRiskLv2Deal() {
|
return riskLv2Deal;
|
}
|
|
public void setRiskLv2Deal(Integer riskLv2Deal) {
|
this.riskLv2Deal = riskLv2Deal;
|
}
|
|
public Integer getRiskLv2Dmg1() {
|
return riskLv2Dmg1;
|
}
|
|
public void setRiskLv2Dmg1(Integer riskLv2Dmg1) {
|
this.riskLv2Dmg1 = riskLv2Dmg1;
|
}
|
|
public Integer getRiskLv2Dmg2() {
|
return riskLv2Dmg2;
|
}
|
|
public void setRiskLv2Dmg2(Integer riskLv2Dmg2) {
|
this.riskLv2Dmg2 = riskLv2Dmg2;
|
}
|
|
public Integer getRiskLv2Dmg3() {
|
return riskLv2Dmg3;
|
}
|
|
public void setRiskLv2Dmg3(Integer riskLv2Dmg3) {
|
this.riskLv2Dmg3 = riskLv2Dmg3;
|
}
|
|
public Integer getEmgcPracticeCount() {
|
return emgcPracticeCount;
|
}
|
|
public void setEmgcPracticeCount(Integer emgcPracticeCount) {
|
this.emgcPracticeCount = emgcPracticeCount;
|
}
|
|
public Date getLastPracticeTime() {
|
return lastPracticeTime;
|
}
|
|
public void setLastPracticeTime(Date lastPracticeTime) {
|
this.lastPracticeTime = lastPracticeTime;
|
}
|
|
public Integer getAccidentL1() {
|
return accidentL1;
|
}
|
|
public void setAccidentL1(Integer accidentL1) {
|
this.accidentL1 = accidentL1;
|
}
|
|
public Integer getAccidentL1Dmg1() {
|
return accidentL1Dmg1;
|
}
|
|
public void setAccidentL1Dmg1(Integer accidentL1Dmg1) {
|
this.accidentL1Dmg1 = accidentL1Dmg1;
|
}
|
|
public Integer getAccidentL1Dmg2() {
|
return accidentL1Dmg2;
|
}
|
|
public void setAccidentL1Dmg2(Integer accidentL1Dmg2) {
|
this.accidentL1Dmg2 = accidentL1Dmg2;
|
}
|
|
public Integer getAccidentL1Dmg3() {
|
return accidentL1Dmg3;
|
}
|
|
public void setAccidentL1Dmg3(Integer accidentL1Dmg3) {
|
this.accidentL1Dmg3 = accidentL1Dmg3;
|
}
|
|
public BigDecimal getAccidentL1Loss() {
|
return accidentL1Loss;
|
}
|
|
public void setAccidentL1Loss(BigDecimal accidentL1Loss) {
|
this.accidentL1Loss = accidentL1Loss;
|
}
|
|
public Integer getAccidentL2() {
|
return accidentL2;
|
}
|
|
public void setAccidentL2(Integer accidentL2) {
|
this.accidentL2 = accidentL2;
|
}
|
|
public Integer getAccidentL2Dmg1() {
|
return accidentL2Dmg1;
|
}
|
|
public void setAccidentL2Dmg1(Integer accidentL2Dmg1) {
|
this.accidentL2Dmg1 = accidentL2Dmg1;
|
}
|
|
public Integer getAccidentL2Dmg2() {
|
return accidentL2Dmg2;
|
}
|
|
public void setAccidentL2Dmg2(Integer accidentL2Dmg2) {
|
this.accidentL2Dmg2 = accidentL2Dmg2;
|
}
|
|
public Integer getAccidentL2Dmg3() {
|
return accidentL2Dmg3;
|
}
|
|
public void setAccidentL2Dmg3(Integer accidentL2Dmg3) {
|
this.accidentL2Dmg3 = accidentL2Dmg3;
|
}
|
|
public BigDecimal getAccidentL2Loss() {
|
return accidentL2Loss;
|
}
|
|
public void setAccidentL2Loss(BigDecimal accidentL2Loss) {
|
this.accidentL2Loss = accidentL2Loss;
|
}
|
|
public Integer getAccidentL3() {
|
return accidentL3;
|
}
|
|
public void setAccidentL3(Integer accidentL3) {
|
this.accidentL3 = accidentL3;
|
}
|
|
public Integer getAccidentL3Dmg1() {
|
return accidentL3Dmg1;
|
}
|
|
public void setAccidentL3Dmg1(Integer accidentL3Dmg1) {
|
this.accidentL3Dmg1 = accidentL3Dmg1;
|
}
|
|
public Integer getAccidentL3Dmg2() {
|
return accidentL3Dmg2;
|
}
|
|
public void setAccidentL3Dmg2(Integer accidentL3Dmg2) {
|
this.accidentL3Dmg2 = accidentL3Dmg2;
|
}
|
|
public Integer getAccidentL3Dmg3() {
|
return accidentL3Dmg3;
|
}
|
|
public void setAccidentL3Dmg3(Integer accidentL3Dmg3) {
|
this.accidentL3Dmg3 = accidentL3Dmg3;
|
}
|
|
public BigDecimal getAccidentL3Loss() {
|
return accidentL3Loss;
|
}
|
|
public void setAccidentL3Loss(BigDecimal accidentL3Loss) {
|
this.accidentL3Loss = accidentL3Loss;
|
}
|
|
public Integer getAccidentL4() {
|
return accidentL4;
|
}
|
|
public void setAccidentL4(Integer accidentL4) {
|
this.accidentL4 = accidentL4;
|
}
|
|
public Integer getAccidentL4Dmg1() {
|
return accidentL4Dmg1;
|
}
|
|
public void setAccidentL4Dmg1(Integer accidentL4Dmg1) {
|
this.accidentL4Dmg1 = accidentL4Dmg1;
|
}
|
|
public Integer getAccidentL4Dmg2() {
|
return accidentL4Dmg2;
|
}
|
|
public void setAccidentL4Dmg2(Integer accidentL4Dmg2) {
|
this.accidentL4Dmg2 = accidentL4Dmg2;
|
}
|
|
public Integer getAccidentL4Dmg3() {
|
return accidentL4Dmg3;
|
}
|
|
public void setAccidentL4Dmg3(Integer accidentL4Dmg3) {
|
this.accidentL4Dmg3 = accidentL4Dmg3;
|
}
|
|
public BigDecimal getAccidentL4Loss() {
|
return accidentL4Loss;
|
}
|
|
public void setAccidentL4Loss(BigDecimal accidentL4Loss) {
|
this.accidentL4Loss = accidentL4Loss;
|
}
|
|
public Integer getAccidentL5() {
|
return accidentL5;
|
}
|
|
public void setAccidentL5(Integer accidentL5) {
|
this.accidentL5 = accidentL5;
|
}
|
|
public Integer getAccidentL5Dmg1() {
|
return accidentL5Dmg1;
|
}
|
|
public void setAccidentL5Dmg1(Integer accidentL5Dmg1) {
|
this.accidentL5Dmg1 = accidentL5Dmg1;
|
}
|
|
public Integer getAccidentL5Dmg2() {
|
return accidentL5Dmg2;
|
}
|
|
public void setAccidentL5Dmg2(Integer accidentL5Dmg2) {
|
this.accidentL5Dmg2 = accidentL5Dmg2;
|
}
|
|
public Integer getAccidentL5Dmg3() {
|
return accidentL5Dmg3;
|
}
|
|
public void setAccidentL5Dmg3(Integer accidentL5Dmg3) {
|
this.accidentL5Dmg3 = accidentL5Dmg3;
|
}
|
|
public BigDecimal getAccidentL5Loss() {
|
return accidentL5Loss;
|
}
|
|
public void setAccidentL5Loss(BigDecimal accidentL5Loss) {
|
this.accidentL5Loss = accidentL5Loss;
|
}
|
|
public Date getGmtCreate() {
|
return gmtCreate;
|
}
|
|
public void setGmtCreate(Date gmtCreate) {
|
this.gmtCreate = gmtCreate;
|
}
|
}
|