郑永安
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
package com.gk.hotwork.specialWork.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
 
import java.io.Serializable;
import java.time.LocalDateTime;
 
/**
 * 通用特殊作业信息
 */
@TableName("work_apply")
public class WorkApplyInfo implements Serializable {
 
    private static final long serialVersionUID = 6581627675660013530L;
    //作业ID
    @TableId(type = IdType.AUTO)
    private Long id;
 
    //所属企业ID
    private Long eid;
 
    //所属部门ID
    private Long depId;
 
    private String depName;
 
    //申请人员ID
    private Long applyUid;
 
    private String applyUname;
 
    //作业类型
    private Byte workType;
 
    //作业等级
    private Byte workLevel;
 
    //作业状态
    private Byte status;
 
    //当前所处审批流程层级
    private Integer approvalStep;
 
    private Long approvalStepId;
 
    //申请时间
    private LocalDateTime applyTime;
 
    //预期作业开始进行时间
    private LocalDateTime expStartTime;
 
    //预期作业结束进行时间
    private LocalDateTime expEndTime;
 
    private LocalDateTime gmtCreate;
 
    private LocalDateTime gmtModified;
 
    //作业证编号
    private String workPermitNo;
 
    //作业人
    private Long operatorUid;
    //作业人
    private String operatorUname;
 
    private String operatorUnames;
 
    private String operatorCompanys;
 
    //作业人编号
    private String operatorCertificate;
    // 作业内容
    private String workContent;
 
    // 作业地点
    private String workLocation;
 
    // 危害辨识
    private String hazardIdentification;
 
    // 八大作业id
    private Long workDetailId;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getEid() {
        return eid;
    }
 
    public void setEid(Long eid) {
        this.eid = eid;
    }
 
    public Long getDepId() {
        return depId;
    }
 
    public void setDepId(Long depId) {
        this.depId = depId;
    }
 
    public Long getApplyUid() {
        return applyUid;
    }
 
    public void setApplyUid(Long applyUid) {
        this.applyUid = applyUid;
    }
 
    public Byte getWorkType() {
        return workType;
    }
 
    public void setWorkType(Byte workType) {
        this.workType = workType;
    }
 
    public Byte getWorkLevel() {
        return workLevel;
    }
 
    public void setWorkLevel(Byte workLevel) {
        this.workLevel = workLevel;
    }
 
    public Byte getStatus() {
        return status;
    }
 
    public void setStatus(Byte status) {
        this.status = status;
    }
 
    public Integer getApprovalStep() {
        return approvalStep;
    }
 
    public void setApprovalStep(Integer approvalStep) {
        this.approvalStep = approvalStep;
    }
 
    public LocalDateTime getApplyTime() {
        return applyTime;
    }
 
    public void setApplyTime(LocalDateTime applyTime) {
        this.applyTime = applyTime;
    }
 
    public LocalDateTime getExpStartTime() {
        return expStartTime;
    }
 
    public void setExpStartTime(LocalDateTime expStartTime) {
        this.expStartTime = expStartTime;
    }
 
    public LocalDateTime getExpEndTime() {
        return expEndTime;
    }
 
    public void setExpEndTime(LocalDateTime expEndTime) {
        this.expEndTime = expEndTime;
    }
 
    public LocalDateTime getGmtCreate() {
        return gmtCreate;
    }
 
    public void setGmtCreate(LocalDateTime gmtCreate) {
        this.gmtCreate = gmtCreate;
    }
 
    public LocalDateTime getGmtModified() {
        return gmtModified;
    }
 
    public void setGmtModified(LocalDateTime gmtModified) {
        this.gmtModified = gmtModified;
    }
 
    public String getWorkPermitNo() {
        return workPermitNo;
    }
 
    public void setWorkPermitNo(String workPermitNo) {
        this.workPermitNo = workPermitNo;
    }
 
    public Long getOperatorUid() {
        return operatorUid;
    }
 
    public void setOperatorUid(Long operatorUid) {
        this.operatorUid = operatorUid;
    }
 
    public String getOperatorCertificate() {
        return operatorCertificate;
    }
 
    public void setOperatorCertificate(String operatorCertificate) {
        this.operatorCertificate = operatorCertificate;
    }
 
    public Long getApprovalStepId() {
        return approvalStepId;
    }
 
    public void setApprovalStepId(Long approvalStepId) {
        this.approvalStepId = approvalStepId;
    }
 
 
    public String getApplyUname() {
        return applyUname;
    }
 
    public void setApplyUname(String applyUname) {
        this.applyUname = applyUname;
    }
 
    public String getOperatorUname() {
        return operatorUname;
    }
 
    public void setOperatorUname(String operatorUname) {
        this.operatorUname = operatorUname;
    }
 
    public String getDepName() {
        return depName;
    }
 
    public void setDepName(String depName) {
        this.depName = depName;
    }
 
    public String getWorkContent() {
        return workContent;
    }
 
    public void setWorkContent(String workContent) {
        this.workContent = workContent;
    }
 
    public String getWorkLocation() {
        return workLocation;
    }
 
    public void setWorkLocation(String workLocation) {
        this.workLocation = workLocation;
    }
 
    public Long getWorkDetailId() {
        return workDetailId;
    }
 
    public void setWorkDetailId(Long workDetailId) {
        this.workDetailId = workDetailId;
    }
 
    public String getHazardIdentification() {
        return hazardIdentification;
    }
 
    public void setHazardIdentification(String hazardIdentification) {
        this.hazardIdentification = hazardIdentification;
    }
 
    public String getOperatorUnames() {
        return operatorUnames;
    }
 
    public void setOperatorUnames(String operatorUnames) {
        this.operatorUnames = operatorUnames;
    }
 
    public String getOperatorCompanys() {
        return operatorCompanys;
    }
 
    public void setOperatorCompanys(String operatorCompanys) {
        this.operatorCompanys = operatorCompanys;
    }
}