package com.gkhy.safePlatform.doublePrevention.entity.dto.req;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
public class PreventDangerManageUpdateReqDTO {
|
/**
|
* 主键
|
*/
|
private Long id;
|
|
/**
|
* 隐患等级:1-一般隐患,2-重大隐患
|
*/
|
private Byte dangerLevel;
|
/**
|
* 隐患类型:1-安全;2-工艺,3-电气;4-仪表,5-消防;6-总图,7-设备;8-其他
|
*/
|
private Byte dangerType;
|
/**
|
* 隐患来源:1-日常排查,2-综合性排查,3-专业性排查,4-季节性排查,5-重点时段及节假日前排查,
|
6-事故类比排查,7-复产复工前排查,8-外聘专家诊断式排查,9-管控措施失效,10-其他
|
*/
|
private Byte dangerSource;
|
/**
|
* 生产装置ID
|
*/
|
private Long produceDeviceId;
|
/**
|
* 风险分析单元id
|
*/
|
private Long riskUnitId;
|
/**
|
* 隐患情况描述
|
*/
|
private String dangerDesc;
|
/**
|
* 隐患产生原因分析
|
*/
|
private String dangerReason;
|
/**
|
* 隐患所属部门id
|
*/
|
private Long depId;
|
/**
|
* 隐患可能后果:1-无;2-轻伤;3-重伤;4-死亡
|
*/
|
private Byte dangerResult;
|
/**
|
* 整改资金
|
*/
|
private BigDecimal cost;
|
/**
|
* 整改期限
|
*/
|
@JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd HH:mm:ss")
|
private Date rectifyTime;
|
/**
|
* 整改类型:1-即查即改,2-限期整改
|
*/
|
private Byte rectifyType;
|
/**
|
* 整改措施
|
*/
|
private String rectifyDesc;
|
/**
|
* 整改责任人
|
*/
|
private Long liablePersonId;
|
/**
|
* 整改部门
|
*/
|
private Long rectifyDepId;
|
/**
|
* 隐患名称
|
*/
|
private String dangerCode;
|
|
public String getDangerCode() {
|
return dangerCode;
|
}
|
|
public void setDangerCode(String dangerCode) {
|
this.dangerCode = dangerCode;
|
}
|
|
public Long getLiablePersonId() {
|
return liablePersonId;
|
}
|
|
public void setLiablePersonId(Long liablePersonId) {
|
this.liablePersonId = liablePersonId;
|
}
|
|
public BigDecimal getCost() {
|
return cost;
|
}
|
|
public void setCost(BigDecimal cost) {
|
this.cost = cost;
|
}
|
|
public Date getRectifyTime() {
|
return rectifyTime;
|
}
|
|
public void setRectifyTime(Date rectifyTime) {
|
this.rectifyTime = rectifyTime;
|
}
|
|
public Byte getRectifyType() {
|
return rectifyType;
|
}
|
|
public void setRectifyType(Byte rectifyType) {
|
this.rectifyType = rectifyType;
|
}
|
|
public String getRectifyDesc() {
|
return rectifyDesc;
|
}
|
|
public void setRectifyDesc(String rectifyDesc) {
|
this.rectifyDesc = rectifyDesc;
|
}
|
|
public Long getRectifyDepId() {
|
return rectifyDepId;
|
}
|
|
public void setRectifyDepId(Long rectifyDepId) {
|
this.rectifyDepId = rectifyDepId;
|
}
|
|
public Long getDepId() {
|
return depId;
|
}
|
|
public void setDepId(Long depId) {
|
this.depId = depId;
|
}
|
|
public Long getRiskUnitId() {
|
return riskUnitId;
|
}
|
|
public void setRiskUnitId(Long riskUnitId) {
|
this.riskUnitId = riskUnitId;
|
}
|
|
public Byte getDangerResult() {
|
return dangerResult;
|
}
|
|
public void setDangerResult(Byte dangerResult) {
|
this.dangerResult = dangerResult;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Byte getDangerLevel() {
|
return dangerLevel;
|
}
|
|
public void setDangerLevel(Byte dangerLevel) {
|
this.dangerLevel = dangerLevel;
|
}
|
|
public Byte getDangerType() {
|
return dangerType;
|
}
|
|
public void setDangerType(Byte dangerType) {
|
this.dangerType = dangerType;
|
}
|
|
public Byte getDangerSource() {
|
return dangerSource;
|
}
|
|
public void setDangerSource(Byte dangerSource) {
|
this.dangerSource = dangerSource;
|
}
|
|
|
public Long getProduceDeviceId() {
|
return produceDeviceId;
|
}
|
|
public void setProduceDeviceId(Long produceDeviceId) {
|
this.produceDeviceId = produceDeviceId;
|
}
|
|
public String getDangerDesc() {
|
return dangerDesc;
|
}
|
|
public void setDangerDesc(String dangerDesc) {
|
this.dangerDesc = dangerDesc;
|
}
|
|
public String getDangerReason() {
|
return dangerReason;
|
}
|
|
public void setDangerReason(String dangerReason) {
|
this.dangerReason = dangerReason;
|
}
|
}
|