双重预防项目-国泰新华二开定制版
16639036659
2023-11-30 54843d459f3fe623e6cf2956f192141e9a99b878
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
package com.ruoyi.project.tr.hiddenDangerCheckPoint.domain;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import com.ruoyi.framework.aspectj.lang.annotation.Excel.ColumnType;
import com.ruoyi.framework.web.domain.BaseEntity;
import lombok.Data;
 
import java.util.Date;
 
/**
 * 隐患排查台账导出对象
 *
 */
@Data
public class HiddenDangerCheckPointExport extends BaseEntity
{
 
    @Excel(name = "序号")
    private String index;
 
    @Excel(name = "隐患事实")
    private String dangerDescription;
 
    @Excel(name = "检查人员")
    private String checkPerson;
 
    @Excel(name = "排查日期")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private String findTime;
 
    @Excel(name = "隐患分级")
    private String dangerLevel;
 
    @Excel(name = "整改期限")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private String rectifyDeadlineTime;
 
    @Excel(name = "责任人")
    private String judgeUserName;
 
    @Excel(name = "整改措施")
    private String rectifyMeasure;
 
    @Excel(name = "完成日期")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private String rectifyCompleteTime;
 
    @Excel(name = "验证人")
    private String acceptUserName;
 
    @Excel(name = "验证时间")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private String acceptCreateTime;
 
    @Excel(name = "完成情况")
    private String acceptOpinion;
 
 
//
//    @Excel(name = "排查方式")
//    private String checkType;
//
//
//    @Excel(name = "基础清单名称")
//    private String baseRiskName;
//
//    @Excel(name = "风险单元")
//    private String riskPointName;
//
//
//    @Excel(name = "风险单元类型")
//    private String riskPointType;
//
//
//    @Excel(name = "隐患名称")
//    private String dangerName;
 
//    @Excel(name = "隐患图片", cellType = ColumnType.PICTURE)
//    private String preRectifyPhoto;
//
//    @Excel(name = "隐患类别")
//    private String troubleTypeName;
//
//    @Excel(name = "隐患级别")
//    private String dangerLevel;
//
//    @Excel(name = "隐患来源")
//    private String dangerSources;
//
//    @Excel(name = "隐患责任部门")
//    private String dangerDep;
//
//    @Excel(name = "整改状态")
//    private String rectifyStatus;
//
//    @Excel(name = "隐患登记时间")
//    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
//    private String registerCreateTime;
//
//    @Excel(name = "登记人员")
//    private String registerUserName;
//
//    @Excel(name = "隐患核查时间")
//    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
//    private String examineCreateTime;
//
//    @Excel(name = "核查人员")
//    private String examineUserName;
//
//    @Excel(name = "隐患整改时间")
//    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
//    private String rectifyCreateTime;
//
//    @Excel(name = "整改人员")
//    private String rectifyUserName;
//
//    @Excel(name = "整改措施")
//    private String rectifyMeasure;
//
////    @Excel(name = "隐患整改后照片", cellType = ColumnType.PICTURE)
//    private String postRectifyPhoto;
 
 
 
}