双重预防项目-国泰新华二开定制版
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
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 HiddenDangerCheckByScheduleExport 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;
 
 
    /**
     * 排查周期
     */
    private Long troubleshootTypeCycleNum;
 
    /**
     * 隐患排查周期类型(1小时,2日,3周,4月,5年)
     */
    private Long troubleshootTypeCycleType;
 
 
    @Excel(name = "排查周期")
    private String troubleshootCycleInfo;
 
 
    /**
     * 隐患责任部门名称
     */
    @Excel(name = "隐患责任部门")
    private String dangerDeptName;
 
 
    /**
     * 隐患地点名称
     */
    @Excel(name = "隐患地点")
    private String dangerPlaceName;
 
 
    /**
     * 排查人
     */
    @Excel(name = "排查人")
    private String scheduleCheckUserName;
 
 
    /**
     * 创建时间
     */
    @Excel(name = "创建时间", dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date createTime;
 
 
    @Excel(name = "状态")
    private String scheduleCheckStatus;
 
 
    public String getCheckType() {
        return checkType;
    }
 
    public void setCheckType(String checkType) {
        this.checkType = checkType;
    }
 
    public String getCheckTypeName() {
        return checkTypeName;
    }
 
    public void setCheckTypeName(String checkTypeName) {
        this.checkTypeName = checkTypeName;
    }
 
    public String getRiskName() {
        return riskName;
    }
 
    public void setRiskName(String riskName) {
        this.riskName = riskName;
    }
 
    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 getRiskType() {
        return riskType;
    }
 
    public void setRiskType(String riskType) {
        this.riskType = riskType;
    }
 
    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 getTroubleshootCycleInfo() {
        return troubleshootCycleInfo;
    }
 
    public void setTroubleshootCycleInfo(String troubleshootCycleInfo) {
        this.troubleshootCycleInfo = troubleshootCycleInfo;
    }
 
    public String getDangerDeptName() {
        return dangerDeptName;
    }
 
    public void setDangerDeptName(String dangerDeptName) {
        this.dangerDeptName = dangerDeptName;
    }
 
    public String getDangerPlaceName() {
        return dangerPlaceName;
    }
 
    public void setDangerPlaceName(String dangerPlaceName) {
        this.dangerPlaceName = dangerPlaceName;
    }
 
    public String getScheduleCheckUserName() {
        return scheduleCheckUserName;
    }
 
    public void setScheduleCheckUserName(String scheduleCheckUserName) {
        this.scheduleCheckUserName = scheduleCheckUserName;
    }
 
    @Override
    public Date getCreateTime() {
        return createTime;
    }
 
    @Override
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public String getScheduleCheckStatus() {
        return scheduleCheckStatus;
    }
 
    public void setScheduleCheckStatus(String scheduleCheckStatus) {
        this.scheduleCheckStatus = scheduleCheckStatus;
    }
}