郑永安
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
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;
    }
}