双重预防项目-国泰新华二开定制版
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
package com.ruoyi.project.tr.hiddenDangerCheck.domain;
 
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import com.ruoyi.framework.web.domain.BaseEntity;
 
import java.util.Date;
 
/**
 * 隐患排查计划执行导出
 */
public class HiddenDangerCheckByPlanExecuteExport extends BaseEntity {
 
 
    //排查类型(1基础清单排查 2选择风险单元清单排查)
    private String checkType;
 
    @Excel(name = "排查方式")
    private String checkTypeName;
 
    private String riskName;
    /**
     * 风险单元名称
     */
    @Excel(name = "基础清单名称")
    private String basicRiskNameLabel;
 
 
    /**
     * 风险单元名称
     */
    @Excel(name = "风险单元")
    private String riskNameLabel;
 
 
    /**
     * 风险单元类型(1设备设施清单 2作业活动清单 3工艺节点清单)
     */
    @Excel(name = "风险单元类型")
    private String riskType;
 
 
    /**
     * 排查计划名称
     */
    @Excel(name = "排查计划名称")
    private String planName;
 
 
    /**
     * 排查类型
     */
    @Excel(name = "排查类型")
    private String troubleshootTypeName;
 
 
    /**
     * 排查周期
     */
    private Long troubleshootTypeCycleNum;
 
    /**
     * 隐患排查周期类型(1小时,2日,3周,4月,5年)
     */
    private Long troubleshootTypeCycleType;
 
 
    @Excel(name = "排查周期")
    private String troubleshootCycleInfo;
 
 
    /**
     * 排查人
     */
    @Excel(name = "排查人")
    private String checkUserName;
 
 
    /**
     * 排查开始日期
     */
    @Excel(name = "排查开始日期")
    private String checkBeginTime;
 
 
    /**
     * 排查结束日期
     */
    @Excel(name = "排查结束日期")
    private String checkEndTime;
 
    /**
     * 创建时间
     */
    @Excel(name = "创建时间", dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date createTime;
 
 
    @Excel(name = "状态")
    private String planExecuteStatus;
 
    public String getBasicRiskNameLabel() {
        return basicRiskNameLabel;
    }
 
    public void setBasicRiskNameLabel(String basicRiskNameLabel) {
        this.basicRiskNameLabel = basicRiskNameLabel;
    }
 
    public String getRiskNameLabel() {
        return riskNameLabel;
    }
 
    public void setRiskNameLabel(String riskNameLabel) {
        this.riskNameLabel = riskNameLabel;
    }
 
    public String getTroubleshootCycleInfo() {
        return troubleshootCycleInfo;
    }
 
    public void setTroubleshootCycleInfo(String troubleshootCycleInfo) {
        this.troubleshootCycleInfo = troubleshootCycleInfo;
    }
 
    public String getCheckTypeName() {
        return checkTypeName;
    }
 
    public void setCheckTypeName(String checkTypeName) {
        this.checkTypeName = checkTypeName;
    }
 
    public String getCheckType() {
        return checkType;
    }
 
    public void setCheckType(String checkType) {
        this.checkType = checkType;
    }
 
 
    public String getRiskName() {
        return riskName;
    }
 
    public void setRiskName(String riskName) {
        this.riskName = riskName;
    }
 
    public String getRiskType() {
        return riskType;
    }
 
    public void setRiskType(String riskType) {
        this.riskType = riskType;
    }
 
    public String getPlanName() {
        return planName;
    }
 
    public void setPlanName(String planName) {
        this.planName = planName;
    }
 
    public String getTroubleshootTypeName() {
        return troubleshootTypeName;
    }
 
    public void setTroubleshootTypeName(String troubleshootTypeName) {
        this.troubleshootTypeName = troubleshootTypeName;
    }
 
    public Long getTroubleshootTypeCycleNum() {
        return troubleshootTypeCycleNum;
    }
 
    public void setTroubleshootTypeCycleNum(Long troubleshootTypeCycleNum) {
        this.troubleshootTypeCycleNum = troubleshootTypeCycleNum;
    }
 
    public Long getTroubleshootTypeCycleType() {
        return troubleshootTypeCycleType;
    }
 
    public void setTroubleshootTypeCycleType(Long troubleshootTypeCycleType) {
        this.troubleshootTypeCycleType = troubleshootTypeCycleType;
    }
 
    public String getCheckUserName() {
        return checkUserName;
    }
 
    public void setCheckUserName(String checkUserName) {
        this.checkUserName = checkUserName;
    }
 
    public String getCheckBeginTime() {
        return checkBeginTime;
    }
 
    public void setCheckBeginTime(String checkBeginTime) {
        this.checkBeginTime = checkBeginTime;
    }
 
    public String getCheckEndTime() {
        return checkEndTime;
    }
 
    public void setCheckEndTime(String checkEndTime) {
        this.checkEndTime = checkEndTime;
    }
 
    @Override
    public Date getCreateTime() {
        return createTime;
    }
 
    @Override
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public String getPlanExecuteStatus() {
        return planExecuteStatus;
    }
 
    public void setPlanExecuteStatus(String planExecuteStatus) {
        this.planExecuteStatus = planExecuteStatus;
    }
}