郑永安
2023-06-19 7a6abd05683528032687c75e80e0bd2030a3e46c
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
package com.gkhy.safePlatform.specialWork.model.dto.resp;
 
import com.fasterxml.jackson.annotation.JsonFormat;
 
import java.io.Serializable;
import java.time.LocalDateTime;
import java.util.List;
 
 
public class AllWorkApplyPageRespDTO implements Serializable {
 
    private static final long serialVersionUID = 6175176581171951602L;
 
    //作业ID
    private Long workApplyId;
 
    //所属企业ID
    private Long eid;
 
    //所属部门ID
    private Long depId;
 
    private String depName;
 
    //申请人员ID
    private Long applyUid;
 
    private String applyUname;
 
    //作业类型
    private Byte workType;
 
    private String workTypeDesc;
 
    //作业等级
    private Byte workLevel;
 
    private String workLevelDesc;
 
    //作业状态
    private Byte status;
 
    private String statusDesc;
 
    //当前所处审批流程层级
    private Integer approvalStep;
 
    private Long approvalStepId;
 
    private String workContent;
 
    private String workLocation;
    // 危险辨识
    private String hazardIdentification;
 
 
    private List<WorkApplyOperatorRespDTO> operators;
 
    private Object workDetail;
 
    private Object working;
 
    //申请时间
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    private LocalDateTime applyTime;
 
    //预期作业开始进行时间
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    private LocalDateTime expStartTime;
 
    //预期作业结束进行时间
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    private LocalDateTime expEndTime;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    private LocalDateTime gmtCreate;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    private LocalDateTime gmtModified;
 
    private List<WorkMaterialRespDTO> workMaterial;
 
    //作业证编号
    private String workPermitNo;
 
 
    private Byte materialStatus;
 
    private String materialStatusDesc;
 
    public Object getWorking() {
        return working;
    }
 
    public void setWorking(Object working) {
        this.working = working;
    }
 
    public String getMaterialStatusDesc() {
        return materialStatusDesc;
    }
 
    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 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 getDepName() {
        return depName;
    }
 
    public void setDepName(String depName) {
        this.depName = depName;
    }
 
    public Long getWorkApplyId() {
        return workApplyId;
    }
 
    public void setWorkApplyId(Long workApplyId) {
        this.workApplyId = workApplyId;
    }
 
    public String getStatusDesc() {
        return statusDesc;
    }
 
    public void setStatusDesc(String statusDesc) {
        this.statusDesc = statusDesc;
    }
 
 
    public String getWorkTypeDesc() {
        return workTypeDesc;
    }
 
    public void setWorkTypeDesc(String workTypeDesc) {
        this.workTypeDesc = workTypeDesc;
    }
 
    public String getWorkLevelDesc() {
        return workLevelDesc;
    }
 
    public void setWorkLevelDesc(String workLevelDesc) {
        this.workLevelDesc = workLevelDesc;
    }
 
    public Object getWorkDetail() {
        return workDetail;
    }
 
    public void setWorkDetail(Object workDetail) {
        this.workDetail = workDetail;
    }
 
 
    public List<WorkApplyOperatorRespDTO> getOperators() {
        return operators;
    }
 
    public void setOperators(List<WorkApplyOperatorRespDTO> operators) {
        this.operators = operators;
    }
 
 
 
    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 String getHazardIdentification() {
        return hazardIdentification;
    }
 
    public void setHazardIdentification(String hazardIdentification) {
        this.hazardIdentification = hazardIdentification;
    }
 
    public List<WorkMaterialRespDTO> getWorkMaterial() {
        return workMaterial;
    }
 
    public void setWorkMaterial(List<WorkMaterialRespDTO> workMaterial) {
        this.workMaterial = workMaterial;
    }
 
    public Byte getMaterialStatus() {
        return materialStatus;
    }
 
    public void setMaterialStatus(Byte materialStatus) {
        this.materialStatus = materialStatus;
    }
 
    public String getMaterialStatusDesc(String desc) {
        return materialStatusDesc;
    }
 
    public void setMaterialStatusDesc(String materialStatusDesc) {
        this.materialStatusDesc = materialStatusDesc;
    }
}