package com.gk.hotwork.Domain.Vo;
|
|
|
|
public class RiskControlMeasureExportVo {
|
|
/** 安全风险事件名称 risk_event_name **/
|
private String riskEventName;
|
|
/**
|
* 自动化监控: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;
|
|
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;
|
}
|
|
public String getRiskEventName() {
|
return riskEventName;
|
}
|
|
public void setRiskEventName(String riskEventName) {
|
this.riskEventName = riskEventName;
|
}
|
|
public String getDataSrc() {
|
return dataSrc;
|
}
|
|
public void setDataSrc(String dataSrc) {
|
this.dataSrc = dataSrc;
|
}
|
|
public String getRiskMeasureDesc() {
|
return riskMeasureDesc;
|
}
|
|
public void setRiskMeasureDesc(String riskMeasureDesc) {
|
this.riskMeasureDesc = riskMeasureDesc;
|
}
|
|
public String getClassify1() {
|
return classify1;
|
}
|
|
public void setClassify1(String classify1) {
|
this.classify1 = classify1;
|
}
|
|
public String getClassify2() {
|
return classify2;
|
}
|
|
public void setClassify2(String classify2) {
|
this.classify2 = classify2;
|
}
|
|
public String getClassify3() {
|
return classify3;
|
}
|
|
public void setClassify3(String classify3) {
|
this.classify3 = classify3;
|
}
|
|
public String getTroubleshootContent() {
|
return troubleshootContent;
|
}
|
|
public void setTroubleshootContent(String troubleshootContent) {
|
this.troubleshootContent = troubleshootContent;
|
}
|
|
public RiskControlMeasureExportVo() {
|
}
|
|
public RiskControlMeasureExportVo(String riskEventName, String dataSrc, String riskMeasureDesc, String classify1, String classify2, String classify3, String troubleshootContent, String timeEffect, String timeUnit) {
|
this.riskEventName = riskEventName;
|
this.dataSrc = dataSrc;
|
this.riskMeasureDesc = riskMeasureDesc;
|
this.classify1 = classify1;
|
this.classify2 = classify2;
|
this.classify3 = classify3;
|
this.troubleshootContent = troubleshootContent;
|
this.timeEffect = timeEffect;
|
this.timeUnit = timeUnit;
|
}
|
}
|