package com.gkhy.safePlatform.doublePrevention.repository.param;
|
|
import java.util.Date;
|
|
public class PreventDangerManageUpdateParams {
|
|
/**
|
* 主键
|
*/
|
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;
|
/**
|
* 隐患情况描述
|
*/
|
private String dangerDesc;
|
/**
|
* 隐患产生原因分析
|
*/
|
private String dangerReason;
|
/**
|
* 最后修改时间
|
*/
|
private Date gmtModitify;
|
/**
|
* 修改人
|
*/
|
private String lastEditUserName;
|
/**
|
* 同步数据修改时间
|
*/
|
private Date updateReportDataTime;
|
/**
|
* 隐患所属部门id
|
*/
|
private Long depId;
|
/**
|
* 风险分析单元id
|
*/
|
private Long riskUnitId;
|
/**
|
* 隐患可能后果:1-无;2-轻伤;3-重伤;4-死亡
|
*/
|
private Byte dangerResult;
|
/**
|
* 同步状态
|
*/
|
private Byte reportStatus;
|
/**
|
* 上报开关 1-上报;2-不上报
|
*/
|
private Byte reportSwitch;
|
/**
|
* 隐患名称
|
*/
|
private String dangerCode;
|
|
public String getDangerCode() {
|
return dangerCode;
|
}
|
|
public void setDangerCode(String dangerCode) {
|
this.dangerCode = dangerCode;
|
}
|
|
public Byte getReportStatus() {
|
return reportStatus;
|
}
|
|
public void setReportStatus(Byte reportStatus) {
|
this.reportStatus = reportStatus;
|
}
|
|
public Byte getReportSwitch() {
|
return reportSwitch;
|
}
|
|
public void setReportSwitch(Byte reportSwitch) {
|
this.reportSwitch = reportSwitch;
|
}
|
|
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 Date getUpdateReportDataTime() {
|
return updateReportDataTime;
|
}
|
|
public void setUpdateReportDataTime(Date updateReportDataTime) {
|
this.updateReportDataTime = updateReportDataTime;
|
}
|
|
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;
|
}
|
|
public Date getGmtModitify() {
|
return gmtModitify;
|
}
|
|
public void setGmtModitify(Date gmtModitify) {
|
this.gmtModitify = gmtModitify;
|
}
|
|
public String getLastEditUserName() {
|
return lastEditUserName;
|
}
|
|
public void setLastEditUserName(String lastEditUserName) {
|
this.lastEditUserName = lastEditUserName;
|
}
|
}
|