双重预防项目-国泰新华二开定制版
SZH
2022-08-20 f9f0687195e0fe349185437d22c495d74c8d4a20
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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
package com.ruoyi.project.tr.troubleshootList.domain;
 
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import com.ruoyi.framework.web.domain.BaseEntity;
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * 隐患排查对象 tr_troubleshoot_list
 * 
 * @author wm
 * @date 2020-05-05
 */
public class TroubleshootList extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** id */
    @Excel(name = "id")
    private Long troubleshootId;
 
    /** 排查计划名称 */
    @Excel(name = "排查计划名称")
    private String troubleshootName;
 
    /** 排查类型 */
    @Excel(name = "排查类型")
    private Long troubleshootType;
 
    /** 组织单位 */
    @Excel(name = "组织单位")
    private Long troubleshootDept;
 
    /** 风险单元ID */
    @Excel(name = "风险单元ID")
    private Long troubleshootRistId;
 
    /** 排查人 */
    @Excel(name = "排查人")
    private Long troubleshootCheckUserId;
 
    /** 被排查单位 */
    @Excel(name = "被排查单位")
    private Long troubleshootCheckedDeptId;
 
    /** 排查开始日期 */
    @Excel(name = "排查开始日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date troubleshootBiginTime;
 
    /** 排查结束日期 */
    @Excel(name = "排查结束日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date troubleshootEndTime;
 
    /** 分发状态(0未分发1已经分发) */
    @Excel(name = "分发状态(0未分发1已经分发)")
    private Long troubleshootDistributeStatus;
 
    /** 排查状态(0,未排查,1,已排查,2上报隐患) */
    @Excel(name = "排查状态(0,未排查,1,已排查,2上报隐患)")
    private Long troubleshootStatus;
 
    /** 隐患名称 */
    @Excel(name = "隐患名称")
    private String troubleshootTroubleName;
 
    /** 隐患描述 */
    @Excel(name = "隐患描述")
    private String troubleshootTroubleDescription;
 
    /** 隐患级别(1.一般隐患,2.重大隐患) */
    @Excel(name = "隐患级别(1.一般隐患,2.重大隐患)")
    private Long troubleshootTroubleLevel;
 
    /** 隐患类别 */
    @Excel(name = "隐患类别")
    private Long troubleshootTroubleType;
 
    /** 隐患责任部门 */
    @Excel(name = "隐患责任部门")
    private Long troubleshootTroubleDept;
 
    /** 隐患地点 */
    @Excel(name = "隐患地点")
    private String troubleshootTroubleAddress;
 
    /** 排查时间 */
    @Excel(name = "排查时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date troubleshootTime;
 
    /** 隐患整改前照片 */
    @Excel(name = "隐患整改前照片")
    private String troubleshootBeforeChangeImageUrl;
 
    /** 核查人 */
    @Excel(name = "核查人")
    private Long troubleshootReviewUserId;
 
    /** 整改人 */
    @Excel(name = "整改人")
    private Long troubleshootRectificationUserId;
 
    /** 隐患类型(1,风险单元隐患,2.上报隐患) */
    @Excel(name = "隐患类型(1,风险单元隐患,2.上报隐患)")
    private Long hiddenTroubleType;
 
    /** 隐患状态,(0,未填写,1,正常,2,有隐患) */
    @Excel(name = "隐患状态,(0,未填写,1,正常,2,有隐患)")
    private Long hiddenTroubleStatus;
 
    /** 整改措施 */
    @Excel(name = "整改措施")
    private String troubleshootRectificationMeasures;
 
    /** 整改情况 */
    @Excel(name = "整改情况")
    private String troubleshootRectificationHappening;
 
    /** 整改资金 */
    @Excel(name = "整改资金")
    private BigDecimal troubleshootRectificationMoney;
 
    /** 整改完成时间 */
    @Excel(name = "整改完成时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date troubleshootRectificationCompleteTime;
 
    /** 验收负责人 */
    @Excel(name = "验收负责人")
    private Long troubleshootAcceptanceUserId;
 
    /** 整改后照片 */
    @Excel(name = "整改后照片")
    private String troubleshootAfterChangeImageUrl;
 
    /** 验收意见 */
    @Excel(name = "验收意见")
    private String troubleshootAcceptanceOpinion;
 
    /** 验收结果(1未审核,2审核通过,3,审核不通过) */
    @Excel(name = "验收结果(1未审核,2审核通过,3,审核不通过)")
    private Long troubleshootAcceptanceResult;
 
    /** 验收文件上传 */
    @Excel(name = "验收文件上传")
    private String troubleshootAcceptanceImageUrl;
 
    /** 排查进度(1计划阶段,2排查阶段,3核查阶段,4整改阶段,5验收阶段) */
    @Excel(name = "排查进度(1计划阶段,2排查阶段,3核查阶段,4整改阶段,5验收阶段)")
    private Long troubleshootProgress;
 
    public void setTroubleshootId(Long troubleshootId) 
    {
        this.troubleshootId = troubleshootId;
    }
 
    public Long getTroubleshootId() 
    {
        return troubleshootId;
    }
    public void setTroubleshootName(String troubleshootName) 
    {
        this.troubleshootName = troubleshootName;
    }
 
    public String getTroubleshootName() 
    {
        return troubleshootName;
    }
    public void setTroubleshootType(Long troubleshootType) 
    {
        this.troubleshootType = troubleshootType;
    }
 
    public Long getTroubleshootType() 
    {
        return troubleshootType;
    }
    public void setTroubleshootDept(Long troubleshootDept) 
    {
        this.troubleshootDept = troubleshootDept;
    }
 
    public Long getTroubleshootDept() 
    {
        return troubleshootDept;
    }
    public void setTroubleshootRistId(Long troubleshootRistId) 
    {
        this.troubleshootRistId = troubleshootRistId;
    }
 
    public Long getTroubleshootRistId() 
    {
        return troubleshootRistId;
    }
    public void setTroubleshootCheckUserId(Long troubleshootCheckUserId) 
    {
        this.troubleshootCheckUserId = troubleshootCheckUserId;
    }
 
    public Long getTroubleshootCheckUserId() 
    {
        return troubleshootCheckUserId;
    }
    public void setTroubleshootCheckedDeptId(Long troubleshootCheckedDeptId) 
    {
        this.troubleshootCheckedDeptId = troubleshootCheckedDeptId;
    }
 
    public Long getTroubleshootCheckedDeptId() 
    {
        return troubleshootCheckedDeptId;
    }
    public void setTroubleshootBiginTime(Date troubleshootBiginTime) 
    {
        this.troubleshootBiginTime = troubleshootBiginTime;
    }
 
    public Date getTroubleshootBiginTime() 
    {
        return troubleshootBiginTime;
    }
    public void setTroubleshootEndTime(Date troubleshootEndTime) 
    {
        this.troubleshootEndTime = troubleshootEndTime;
    }
 
    public Date getTroubleshootEndTime() 
    {
        return troubleshootEndTime;
    }
    public void setTroubleshootDistributeStatus(Long troubleshootDistributeStatus) 
    {
        this.troubleshootDistributeStatus = troubleshootDistributeStatus;
    }
 
    public Long getTroubleshootDistributeStatus() 
    {
        return troubleshootDistributeStatus;
    }
    public void setTroubleshootStatus(Long troubleshootStatus) 
    {
        this.troubleshootStatus = troubleshootStatus;
    }
 
    public Long getTroubleshootStatus() 
    {
        return troubleshootStatus;
    }
    public void setTroubleshootTroubleName(String troubleshootTroubleName) 
    {
        this.troubleshootTroubleName = troubleshootTroubleName;
    }
 
    public String getTroubleshootTroubleName() 
    {
        return troubleshootTroubleName;
    }
    public void setTroubleshootTroubleDescription(String troubleshootTroubleDescription) 
    {
        this.troubleshootTroubleDescription = troubleshootTroubleDescription;
    }
 
    public String getTroubleshootTroubleDescription() 
    {
        return troubleshootTroubleDescription;
    }
    public void setTroubleshootTroubleLevel(Long troubleshootTroubleLevel) 
    {
        this.troubleshootTroubleLevel = troubleshootTroubleLevel;
    }
 
    public Long getTroubleshootTroubleLevel() 
    {
        return troubleshootTroubleLevel;
    }
    public void setTroubleshootTroubleType(Long troubleshootTroubleType) 
    {
        this.troubleshootTroubleType = troubleshootTroubleType;
    }
 
    public Long getTroubleshootTroubleType() 
    {
        return troubleshootTroubleType;
    }
    public void setTroubleshootTroubleDept(Long troubleshootTroubleDept) 
    {
        this.troubleshootTroubleDept = troubleshootTroubleDept;
    }
 
    public Long getTroubleshootTroubleDept() 
    {
        return troubleshootTroubleDept;
    }
    public void setTroubleshootTroubleAddress(String troubleshootTroubleAddress) 
    {
        this.troubleshootTroubleAddress = troubleshootTroubleAddress;
    }
 
    public String getTroubleshootTroubleAddress() 
    {
        return troubleshootTroubleAddress;
    }
    public void setTroubleshootTime(Date troubleshootTime) 
    {
        this.troubleshootTime = troubleshootTime;
    }
 
    public Date getTroubleshootTime() 
    {
        return troubleshootTime;
    }
    public void setTroubleshootBeforeChangeImageUrl(String troubleshootBeforeChangeImageUrl) 
    {
        this.troubleshootBeforeChangeImageUrl = troubleshootBeforeChangeImageUrl;
    }
 
    public String getTroubleshootBeforeChangeImageUrl() 
    {
        return troubleshootBeforeChangeImageUrl;
    }
    public void setTroubleshootReviewUserId(Long troubleshootReviewUserId) 
    {
        this.troubleshootReviewUserId = troubleshootReviewUserId;
    }
 
    public Long getTroubleshootReviewUserId() 
    {
        return troubleshootReviewUserId;
    }
    public void setTroubleshootRectificationUserId(Long troubleshootRectificationUserId) 
    {
        this.troubleshootRectificationUserId = troubleshootRectificationUserId;
    }
 
    public Long getTroubleshootRectificationUserId() 
    {
        return troubleshootRectificationUserId;
    }
    public void setHiddenTroubleType(Long hiddenTroubleType) 
    {
        this.hiddenTroubleType = hiddenTroubleType;
    }
 
    public Long getHiddenTroubleType() 
    {
        return hiddenTroubleType;
    }
    public void setHiddenTroubleStatus(Long hiddenTroubleStatus) 
    {
        this.hiddenTroubleStatus = hiddenTroubleStatus;
    }
 
    public Long getHiddenTroubleStatus() 
    {
        return hiddenTroubleStatus;
    }
    public void setTroubleshootRectificationMeasures(String troubleshootRectificationMeasures) 
    {
        this.troubleshootRectificationMeasures = troubleshootRectificationMeasures;
    }
 
    public String getTroubleshootRectificationMeasures() 
    {
        return troubleshootRectificationMeasures;
    }
    public void setTroubleshootRectificationHappening(String troubleshootRectificationHappening) 
    {
        this.troubleshootRectificationHappening = troubleshootRectificationHappening;
    }
 
    public String getTroubleshootRectificationHappening() 
    {
        return troubleshootRectificationHappening;
    }
    public void setTroubleshootRectificationMoney(BigDecimal troubleshootRectificationMoney) 
    {
        this.troubleshootRectificationMoney = troubleshootRectificationMoney;
    }
 
    public BigDecimal getTroubleshootRectificationMoney() 
    {
        return troubleshootRectificationMoney;
    }
    public void setTroubleshootRectificationCompleteTime(Date troubleshootRectificationCompleteTime) 
    {
        this.troubleshootRectificationCompleteTime = troubleshootRectificationCompleteTime;
    }
 
    public Date getTroubleshootRectificationCompleteTime() 
    {
        return troubleshootRectificationCompleteTime;
    }
    public void setTroubleshootAcceptanceUserId(Long troubleshootAcceptanceUserId) 
    {
        this.troubleshootAcceptanceUserId = troubleshootAcceptanceUserId;
    }
 
    public Long getTroubleshootAcceptanceUserId() 
    {
        return troubleshootAcceptanceUserId;
    }
    public void setTroubleshootAfterChangeImageUrl(String troubleshootAfterChangeImageUrl) 
    {
        this.troubleshootAfterChangeImageUrl = troubleshootAfterChangeImageUrl;
    }
 
    public String getTroubleshootAfterChangeImageUrl() 
    {
        return troubleshootAfterChangeImageUrl;
    }
    public void setTroubleshootAcceptanceOpinion(String troubleshootAcceptanceOpinion) 
    {
        this.troubleshootAcceptanceOpinion = troubleshootAcceptanceOpinion;
    }
 
    public String getTroubleshootAcceptanceOpinion() 
    {
        return troubleshootAcceptanceOpinion;
    }
    public void setTroubleshootAcceptanceResult(Long troubleshootAcceptanceResult) 
    {
        this.troubleshootAcceptanceResult = troubleshootAcceptanceResult;
    }
 
    public Long getTroubleshootAcceptanceResult() 
    {
        return troubleshootAcceptanceResult;
    }
    public void setTroubleshootAcceptanceImageUrl(String troubleshootAcceptanceImageUrl) 
    {
        this.troubleshootAcceptanceImageUrl = troubleshootAcceptanceImageUrl;
    }
 
    public String getTroubleshootAcceptanceImageUrl() 
    {
        return troubleshootAcceptanceImageUrl;
    }
    public void setTroubleshootProgress(Long troubleshootProgress) 
    {
        this.troubleshootProgress = troubleshootProgress;
    }
 
    public Long getTroubleshootProgress() 
    {
        return troubleshootProgress;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("troubleshootId", getTroubleshootId())
            .append("createBy", getCreateBy())
            .append("createTime", getCreateTime())
            .append("updateBy", getUpdateBy())
            .append("updateTime", getUpdateTime())
            .append("remark", getRemark())
            .append("troubleshootName", getTroubleshootName())
            .append("troubleshootType", getTroubleshootType())
            .append("troubleshootDept", getTroubleshootDept())
            .append("troubleshootRistId", getTroubleshootRistId())
            .append("troubleshootCheckUserId", getTroubleshootCheckUserId())
            .append("troubleshootCheckedDeptId", getTroubleshootCheckedDeptId())
            .append("troubleshootBiginTime", getTroubleshootBiginTime())
            .append("troubleshootEndTime", getTroubleshootEndTime())
            .append("troubleshootDistributeStatus", getTroubleshootDistributeStatus())
            .append("troubleshootStatus", getTroubleshootStatus())
            .append("troubleshootTroubleName", getTroubleshootTroubleName())
            .append("troubleshootTroubleDescription", getTroubleshootTroubleDescription())
            .append("troubleshootTroubleLevel", getTroubleshootTroubleLevel())
            .append("troubleshootTroubleType", getTroubleshootTroubleType())
            .append("troubleshootTroubleDept", getTroubleshootTroubleDept())
            .append("troubleshootTroubleAddress", getTroubleshootTroubleAddress())
            .append("troubleshootTime", getTroubleshootTime())
            .append("troubleshootBeforeChangeImageUrl", getTroubleshootBeforeChangeImageUrl())
            .append("troubleshootReviewUserId", getTroubleshootReviewUserId())
            .append("troubleshootRectificationUserId", getTroubleshootRectificationUserId())
            .append("hiddenTroubleType", getHiddenTroubleType())
            .append("hiddenTroubleStatus", getHiddenTroubleStatus())
            .append("troubleshootRectificationMeasures", getTroubleshootRectificationMeasures())
            .append("troubleshootRectificationHappening", getTroubleshootRectificationHappening())
            .append("troubleshootRectificationMoney", getTroubleshootRectificationMoney())
            .append("troubleshootRectificationCompleteTime", getTroubleshootRectificationCompleteTime())
            .append("troubleshootAcceptanceUserId", getTroubleshootAcceptanceUserId())
            .append("troubleshootAfterChangeImageUrl", getTroubleshootAfterChangeImageUrl())
            .append("troubleshootAcceptanceOpinion", getTroubleshootAcceptanceOpinion())
            .append("troubleshootAcceptanceResult", getTroubleshootAcceptanceResult())
            .append("troubleshootAcceptanceImageUrl", getTroubleshootAcceptanceImageUrl())
            .append("troubleshootProgress", getTroubleshootProgress())
            .toString();
    }
}