package com.gk.hotwork.Domain;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
@TableName("risk_control_measure")
|
public class RiskControlMeasure implements Serializable {
|
|
private final static long serialVersionUID = 1L;
|
/**
|
* id
|
**/
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
/**
|
* 所属安全事件id risk_event_id
|
**/
|
private Long riskEventId;
|
|
/**
|
* 自动化监控:1;隐患排查2 data_src
|
**/
|
private String dataSrc;
|
|
/**
|
* 管控措施描述 risk_measure_desc
|
**/
|
private String riskMeasureDesc;
|
|
/**
|
* classify1
|
**/
|
private String classify1;
|
|
/**
|
* classify2
|
**/
|
private String classify2;
|
|
/**
|
* 企业自己定义 classify3
|
**/
|
private String classify3;
|
|
/**
|
* 隐患排查内容 troubleshoot_content
|
**/
|
private String troubleshootContent;
|
|
/**
|
* --周期时间数值 time_effect
|
**/
|
private String timeEffect;
|
|
/**
|
* --周期时间单位 time_unit
|
**/
|
private String timeUnit;
|
/**
|
* 有效标识 valid_flag
|
**/
|
private Boolean validFlag;
|
|
/**
|
* 创建时间 create_time
|
**/
|
private Date createTime;
|
|
/**
|
* 最新修改时间 update_time
|
**/
|
private Date updateTime;
|
|
/**
|
* 创建人 create_by
|
**/
|
private String createBy;
|
|
/**
|
* 最后修改人 update_by
|
**/
|
private String updateBy;
|
|
@TableField(exist = false)
|
private RiskEvent riskEvent;
|
|
/**
|
* id
|
**/
|
public Long getId() {
|
|
return id;
|
}
|
|
public String getTimeEffect() {
|
return timeEffect;
|
}
|
|
public void setTimeEffect(String timeEffect) {
|
this.timeEffect = timeEffect;
|
}
|
|
public String getTimeUnit() {
|
return timeUnit;
|
}
|
|
public void setTimeUnit(String timeUnit) {
|
this.timeUnit = timeUnit;
|
}
|
|
/**
|
* id
|
**/
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
/**
|
* 所属安全事件id risk_event_id
|
**/
|
public Long getRiskEventId() {
|
return riskEventId;
|
}
|
|
/**
|
* 所属安全事件id risk_event_id
|
**/
|
public void setRiskEventId(Long riskEventId) {
|
this.riskEventId = riskEventId;
|
}
|
|
/**
|
* 自动化监控:1;隐患排查2 data_src
|
**/
|
public String getDataSrc() {
|
return dataSrc;
|
}
|
|
/**
|
* 自动化监控:1;隐患排查2 data_src
|
**/
|
public void setDataSrc(String dataSrc) {
|
this.dataSrc = dataSrc == null ? null : dataSrc.trim();
|
}
|
|
|
|
/**
|
* 管控措施描述 risk_measure_desc
|
**/
|
public String getRiskMeasureDesc() {
|
return riskMeasureDesc;
|
}
|
|
/**
|
* 管控措施描述 risk_measure_desc
|
**/
|
public void setRiskMeasureDesc(String riskMeasureDesc) {
|
this.riskMeasureDesc = riskMeasureDesc == null ? null : riskMeasureDesc.trim();
|
}
|
|
/**
|
* classify1
|
**/
|
public String getClassify1() {
|
return classify1;
|
}
|
|
/**
|
* classify1
|
**/
|
public void setClassify1(String classify1) {
|
this.classify1 = classify1 == null ? null : classify1.trim();
|
}
|
|
/**
|
* classify2
|
**/
|
public String getClassify2() {
|
return classify2;
|
}
|
|
/**
|
* classify2
|
**/
|
public void setClassify2(String classify2) {
|
this.classify2 = classify2 == null ? null : classify2.trim();
|
}
|
|
/**
|
* 企业自己定义 classify3
|
**/
|
public String getClassify3() {
|
return classify3;
|
}
|
|
/**
|
* 企业自己定义 classify3
|
**/
|
public void setClassify3(String classify3) {
|
this.classify3 = classify3 == null ? null : classify3.trim();
|
}
|
|
/**
|
* 隐患排查内容 troubleshoot_content
|
**/
|
public String getTroubleshootContent() {
|
return troubleshootContent;
|
}
|
|
/**
|
* 隐患排查内容 troubleshoot_content
|
**/
|
public void setTroubleshootContent(String troubleshootContent) {
|
this.troubleshootContent = troubleshootContent == null ? null : troubleshootContent.trim();
|
}
|
|
/**
|
* 有效标识 valid_flag
|
**/
|
public Boolean getValidFlag() {
|
return validFlag;
|
}
|
|
/**
|
* 有效标识 valid_flag
|
**/
|
public void setValidFlag(Boolean validFlag) {
|
this.validFlag = validFlag;
|
}
|
|
/**
|
* 创建时间 create_time
|
**/
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
/**
|
* 创建时间 create_time
|
**/
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
/**
|
* 最新修改时间 update_time
|
**/
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
/**
|
* 最新修改时间 update_time
|
**/
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
/**
|
* 创建人 create_by
|
**/
|
public String getCreateBy() {
|
return createBy;
|
}
|
|
/**
|
* 创建人 create_by
|
**/
|
public void setCreateBy(String createBy) {
|
this.createBy = createBy == null ? null : createBy.trim();
|
}
|
|
/**
|
* 最后修改人 update_by
|
**/
|
public String getUpdateBy() {
|
return updateBy;
|
}
|
|
/**
|
* 最后修改人 update_by
|
**/
|
public void setUpdateBy(String updateBy) {
|
this.updateBy = updateBy == null ? null : updateBy.trim();
|
}
|
|
|
public RiskEvent getRiskEvent() {
|
return riskEvent;
|
}
|
|
public void setRiskEvent(RiskEvent riskEvent) {
|
this.riskEvent = riskEvent;
|
}
|
}
|