zhangf
2024-05-08 0414ddb0b2b3a7199ae6181a770f97ac140dbd73
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
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
package com.gkhy.safePlatform.emergency.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.gkhy.safePlatform.emergency.model.dto.resp.EmergencyDrillExecuteUserRespDTO;
 
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
 
@TableName("emergency_drill_evaluation")
public class EmergencyDrillEvaluationInfoDetailDO {
 
 
    // 应急演练计划
 
    private String emergencyPlanName;
 
    private String makingUserName;
 
    public String getEmergencyPlanName() {
        return emergencyPlanName;
    }
 
    public void setEmergencyPlanName(String emergencyPlanName) {
        this.emergencyPlanName = emergencyPlanName;
    }
 
    public String getMakingUserName() {
        return makingUserName;
    }
 
    public void setMakingUserName(String makingUserName) {
        this.makingUserName = makingUserName;
    }
 
    private Date makingPlanDate;
 
    private Date drillPlanDate;
 
    private Long makingUserUid;
 
    private Long makingDepartmentId;
 
    private Long departmentId;
 
    private BigDecimal drillExpense;
 
    private Byte drillLevel;
 
    private String drillAddress;
 
    private String drillName;
 
    private Byte drillWay;
 
    private String insuranceMeasures;
 
    private String remark;
 
    private String purpose;
 
    // 应急演练实施
 
    private String recordUserName;
 
 
    public String getRecordUserName() {
        return recordUserName;
    }
 
    public void setRecordUserName(String recordUserName) {
        this.recordUserName = recordUserName;
    }
 
    private Long drillPlanId;
 
    private Date drillRecordDate;
 
    private Long recordUserUid;
 
    private String processDesc;
 
    private List<EmergencyDrillExecuteUserRespDTO> userList;
 
    public Date getMakingPlanDate() {
        return makingPlanDate;
    }
 
    public void setMakingPlanDate(Date makingPlanDate) {
        this.makingPlanDate = makingPlanDate;
    }
 
    public Date getDrillPlanDate() {
        return drillPlanDate;
    }
 
    public void setDrillPlanDate(Date drillPlanDate) {
        this.drillPlanDate = drillPlanDate;
    }
 
    public Long getMakingUserUid() {
        return makingUserUid;
    }
 
    public void setMakingUserUid(Long makingUserUid) {
        this.makingUserUid = makingUserUid;
    }
 
    public Long getMakingDepartmentId() {
        return makingDepartmentId;
    }
 
    public void setMakingDepartmentId(Long makingDepartmentId) {
        this.makingDepartmentId = makingDepartmentId;
    }
 
    public Long getDepartmentId() {
        return departmentId;
    }
 
    public void setDepartmentId(Long departmentId) {
        this.departmentId = departmentId;
    }
 
    public BigDecimal getDrillExpense() {
        return drillExpense;
    }
 
    public void setDrillExpense(BigDecimal drillExpense) {
        this.drillExpense = drillExpense;
    }
 
    public Byte getDrillLevel() {
        return drillLevel;
    }
 
    public void setDrillLevel(Byte drillLevel) {
        this.drillLevel = drillLevel;
    }
 
    public String getDrillAddress() {
        return drillAddress;
    }
 
    public void setDrillAddress(String drillAddress) {
        this.drillAddress = drillAddress;
    }
 
    public String getDrillName() {
        return drillName;
    }
 
    public void setDrillName(String drillName) {
        this.drillName = drillName;
    }
 
    public Byte getDrillWay() {
        return drillWay;
    }
 
    public void setDrillWay(Byte drillWay) {
        this.drillWay = drillWay;
    }
 
    public String getInsuranceMeasures() {
        return insuranceMeasures;
    }
 
    public void setInsuranceMeasures(String insuranceMeasures) {
        this.insuranceMeasures = insuranceMeasures;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public String getPurpose() {
        return purpose;
    }
 
    public void setPurpose(String purpose) {
        this.purpose = purpose;
    }
 
    public Date getDrillRecordDate() {
        return drillRecordDate;
    }
 
    public void setDrillRecordDate(Date drillRecordDate) {
        this.drillRecordDate = drillRecordDate;
    }
 
    public Long getRecordUserUid() {
        return recordUserUid;
    }
 
    public void setRecordUserUid(Long recordUserUid) {
        this.recordUserUid = recordUserUid;
    }
 
    public String getProcessDesc() {
        return processDesc;
    }
 
    public void setProcessDesc(String processDesc) {
        this.processDesc = processDesc;
    }
 
    public List<EmergencyDrillExecuteUserRespDTO> getUserList() {
        return userList;
    }
 
    public void setUserList(List<EmergencyDrillExecuteUserRespDTO> userList) {
        this.userList = userList;
    }
 
    // 评价
    @TableId(type = IdType.AUTO)
    private Long id;
 
    private Long drillExecuteId;
 
    private Byte suitable;
 
    private Byte sufficient;
 
    private Byte arrival;
 
    private Byte supplies;
 
    private Byte protection;
 
    private Byte whole;
 
    private Byte division;
 
    private Byte effect;
 
    private Byte report;
 
    private Byte safety;
 
    private Byte rescue;
 
    private Byte evacuate;
 
    private Boolean needModify;
 
    private String questionAndImprove;
 
    private String modifyContent;
 
    public Long getDrillPlanId() {
        return drillPlanId;
    }
 
    public void setDrillPlanId(Long drillPlanId) {
        this.drillPlanId = drillPlanId;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getDrillExecuteId() {
        return drillExecuteId;
    }
 
    public void setDrillExecuteId(Long drillExecuteId) {
        this.drillExecuteId = drillExecuteId;
    }
 
    public Byte getSuitable() {
        return suitable;
    }
 
    public void setSuitable(Byte suitable) {
        this.suitable = suitable;
    }
 
    public Byte getSufficient() {
        return sufficient;
    }
 
    public void setSufficient(Byte sufficient) {
        this.sufficient = sufficient;
    }
 
    public Byte getArrival() {
        return arrival;
    }
 
    public void setArrival(Byte arrival) {
        this.arrival = arrival;
    }
 
    public Byte getSupplies() {
        return supplies;
    }
 
    public void setSupplies(Byte supplies) {
        this.supplies = supplies;
    }
 
    public Byte getProtection() {
        return protection;
    }
 
    public void setProtection(Byte protection) {
        this.protection = protection;
    }
 
    public Byte getWhole() {
        return whole;
    }
 
    public void setWhole(Byte whole) {
        this.whole = whole;
    }
 
    public Byte getDivision() {
        return division;
    }
 
    public void setDivision(Byte division) {
        this.division = division;
    }
 
    public Byte getEffect() {
        return effect;
    }
 
    public void setEffect(Byte effect) {
        this.effect = effect;
    }
 
    public Byte getReport() {
        return report;
    }
 
    public void setReport(Byte report) {
        this.report = report;
    }
 
    public Byte getSafety() {
        return safety;
    }
 
    public void setSafety(Byte safety) {
        this.safety = safety;
    }
 
    public Byte getRescue() {
        return rescue;
    }
 
    public void setRescue(Byte rescue) {
        this.rescue = rescue;
    }
 
    public Byte getEvacuate() {
        return evacuate;
    }
 
    public void setEvacuate(Byte evacuate) {
        this.evacuate = evacuate;
    }
 
    public Boolean getNeedModify() {
        return needModify;
    }
 
    public void setNeedModify(Boolean needModify) {
        this.needModify = needModify;
    }
 
    public String getQuestionAndImprove() {
        return questionAndImprove;
    }
 
    public void setQuestionAndImprove(String questionAndImprove) {
        this.questionAndImprove = questionAndImprove;
    }
 
    public String getModifyContent() {
        return modifyContent;
    }
 
    public void setModifyContent(String modifyContent) {
        this.modifyContent = modifyContent;
    }
}