郑永安
2023-09-19 69185134fcfaf913ea45f1255677225a2cc311a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
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;
    }
}