13693261870
2025-07-02 6708810c4de34dfb9513061432d656f91d56ee3a
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
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
package com.ruoyi.buss.domain.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.buss.domain.DsTaskDetail;
import com.ruoyi.common.annotation.Excel;
 
import java.io.Serializable;
import java.util.Date;
 
public class DsTaskDetailVO implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    private Long PKID;
    private Long taskId;
    private Long harborId;
    private String harborName;
    private Long berthId;
    private String berthName;
    private String parkingType;
    private String shipNo;
    private String shipType;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date STIME;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date elecStime;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date elecEtime;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date waterStime;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date waterEtime;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date oilStime;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date oilEtime;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date ammoStime;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date ammoEtime;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date matStime;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date matEtime;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date ETIME;
 
    private Integer oilTime;
 
    private Integer ammoTime;
 
    private Integer matTime;
    private Integer waterTime;
    private Integer totalTime;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date t1;
 
    private String delFlag;
 
    private String supplySeq;
 
    private Integer carCount;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date oilApply;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date oilReady;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date ammoTest;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date ammoStart;
 
    private Double food;
 
    private Double foodW;
 
    private Double foodO;
 
    private Long workGrpId;
 
    private String workGrpName;
 
    private Long deptId;
 
    private Long workMatGrpId;
 
    private String workMatGrpName;
 
    public Long getPKID() {
        return PKID;
    }
 
    public void setPKID(Long PKID) {
        this.PKID = PKID;
    }
 
    public Long getTaskId() {
        return taskId;
    }
 
    public void setTaskId(Long taskId) {
        this.taskId = taskId;
    }
 
    public Long getHarborId() {
        return harborId;
    }
 
    public void setHarborId(Long harborId) {
        this.harborId = harborId;
    }
 
    public String getHarborName() {
        return harborName;
    }
 
    public void setHarborName(String harborName) {
        this.harborName = harborName;
    }
 
    public Long getBerthId() {
        return berthId;
    }
 
    public void setBerthId(Long berthId) {
        this.berthId = berthId;
    }
 
    public String getBerthName() {
        return berthName;
    }
 
    public void setBerthName(String berthName) {
        this.berthName = berthName;
    }
 
    public String getParkingType() {
        return parkingType;
    }
 
    public void setParkingType(String parkingType) {
        this.parkingType = parkingType;
    }
 
    public String getShipNo() {
        return shipNo;
    }
 
    public void setShipNo(String shipNo) {
        this.shipNo = shipNo;
    }
 
    public String getShipType() {
        return shipType;
    }
 
    public void setShipType(String shipType) {
        this.shipType = shipType;
    }
 
    public Date getSTIME() {
        return STIME;
    }
 
    public void setSTIME(Date STIME) {
        this.STIME = STIME;
    }
 
    public Date getElecStime() {
        return elecStime;
    }
 
    public void setElecStime(Date elecStime) {
        this.elecStime = elecStime;
    }
 
    public Date getElecEtime() {
        return elecEtime;
    }
 
    public void setElecEtime(Date elecEtime) {
        this.elecEtime = elecEtime;
    }
 
    public Date getWaterStime() {
        return waterStime;
    }
 
    public void setWaterStime(Date waterStime) {
        this.waterStime = waterStime;
    }
 
    public Date getWaterEtime() {
        return waterEtime;
    }
 
    public void setWaterEtime(Date waterEtime) {
        this.waterEtime = waterEtime;
    }
 
    public Date getOilStime() {
        return oilStime;
    }
 
    public void setOilStime(Date oilStime) {
        this.oilStime = oilStime;
    }
 
    public Date getOilEtime() {
        return oilEtime;
    }
 
    public void setOilEtime(Date oilEtime) {
        this.oilEtime = oilEtime;
    }
 
    public Date getAmmoStime() {
        return ammoStime;
    }
 
    public void setAmmoStime(Date ammoStime) {
        this.ammoStime = ammoStime;
    }
 
    public Date getAmmoEtime() {
        return ammoEtime;
    }
 
    public void setAmmoEtime(Date ammoEtime) {
        this.ammoEtime = ammoEtime;
    }
 
    public Date getMatStime() {
        return matStime;
    }
 
    public void setMatStime(Date matStime) {
        this.matStime = matStime;
    }
 
    public Date getMatEtime() {
        return matEtime;
    }
 
    public void setMatEtime(Date matEtime) {
        this.matEtime = matEtime;
    }
 
    public Date getETIME() {
        return ETIME;
    }
 
    public void setETIME(Date ETIME) {
        this.ETIME = ETIME;
    }
 
    public Integer getOilTime() {
        return oilTime;
    }
 
    public void setOilTime(Integer oilTime) {
        this.oilTime = oilTime;
    }
 
    public Integer getAmmoTime() {
        return ammoTime;
    }
 
    public void setAmmoTime(Integer ammoTime) {
        this.ammoTime = ammoTime;
    }
 
    public Integer getMatTime() {
        return matTime;
    }
 
    public void setMatTime(Integer matTime) {
        this.matTime = matTime;
    }
 
    public Integer getWaterTime() {
        return waterTime;
    }
 
    public void setWaterTime(Integer waterTime) {
        this.waterTime = waterTime;
    }
 
    public Integer getTotalTime() {
        return totalTime;
    }
 
    public void setTotalTime(Integer totalTime) {
        this.totalTime = totalTime;
    }
 
    public Date getT1() {
        return t1;
    }
 
    public void setT1(Date t1) {
        this.t1 = t1;
    }
 
    public String getDelFlag() {
        return delFlag;
    }
 
    public void setDelFlag(String delFlag) {
        this.delFlag = delFlag;
    }
 
    public String getSupplySeq() {
        return supplySeq;
    }
 
    public void setSupplySeq(String supplySeq) {
        this.supplySeq = supplySeq;
    }
 
    public Integer getCarCount() {
        return carCount;
    }
 
    public void setCarCount(Integer carCount) {
        this.carCount = carCount;
    }
 
    public Date getOilApply() {
        return oilApply;
    }
 
    public void setOilApply(Date oilApply) {
        this.oilApply = oilApply;
    }
 
    public Date getOilReady() {
        return oilReady;
    }
 
    public void setOilReady(Date oilReady) {
        this.oilReady = oilReady;
    }
 
    public Date getAmmoTest() {
        return ammoTest;
    }
 
    public void setAmmoTest(Date ammoTest) {
        this.ammoTest = ammoTest;
    }
 
    public Date getAmmoStart() {
        return ammoStart;
    }
 
    public void setAmmoStart(Date ammoStart) {
        this.ammoStart = ammoStart;
    }
 
    public Double getFood() {
        return food;
    }
 
    public void setFood(Double food) {
        this.food = food;
    }
 
    public Double getFoodW() {
        return foodW;
    }
 
    public void setFoodW(Double foodW) {
        this.foodW = foodW;
    }
 
    public Double getFoodO() {
        return foodO;
    }
 
    public void setFoodO(Double foodO) {
        this.foodO = foodO;
    }
 
    public Long getWorkGrpId() {
        return workGrpId;
    }
 
    public void setWorkGrpId(Long workGrpId) {
        this.workGrpId = workGrpId;
    }
 
    public String getWorkGrpName() {
        return workGrpName;
    }
 
    public void setWorkGrpName(String workGrpName) {
        this.workGrpName = workGrpName;
    }
 
    public Long getDeptId() {
        return deptId;
    }
 
    public void setDeptId(Long deptId) {
        this.deptId = deptId;
    }
 
    public Long getWorkMatGrpId() {
        return workMatGrpId;
    }
 
    public void setWorkMatGrpId(Long workMatGrpId) {
        this.workMatGrpId = workMatGrpId;
    }
 
    public String getWorkMatGrpName() {
        return workMatGrpName;
    }
 
    public void setWorkMatGrpName(String workMatGrpName) {
        this.workMatGrpName = workMatGrpName;
    }
 
    public DsTaskDetailVO(Long PKID, Long taskId) {
        this.PKID = PKID;
        this.taskId = taskId;
    }
 
    public DsTaskDetailVO(DsTaskDetail detail) {
        this.PKID = detail.getPKID();
        this.taskId = detail.getTaskId();
        this.harborId = detail.getHarborId();
        this.harborName = detail.getHarborName();
        this.berthId = detail.getBerthId();
        this.berthName = detail.getBerthName();
        this.parkingType = detail.getParkingType();
        this.shipNo = detail.getShipNo();
        this.shipType = detail.getShipType();
        this.STIME = detail.getSTIME();
 
        if (detail.getElecStime() != null) {
            this.elecStime = new Date(detail.getT1().getTime() + detail.getElecStime() * 3600000);
        }
        if (detail.getElecEtime() != null) {
            this.elecEtime = new Date(detail.getT1().getTime() + detail.getElecEtime() * 3600000);
        }
        if (detail.getWaterStime() != null) {
            this.waterStime = new Date(detail.getT1().getTime() + detail.getWaterStime() * 3600000);
        }
        if (detail.getWaterEtime() != null) {
            this.waterEtime = new Date(detail.getT1().getTime() + detail.getWaterEtime() * 3600000);
        }
        if (detail.getOilStime() != null) {
            this.oilStime = new Date(detail.getT1().getTime() + detail.getOilStime() * 3600000);
        }
        if (detail.getOilEtime() != null) {
            this.oilEtime = new Date(detail.getT1().getTime() + detail.getOilEtime() * 3600000);
        }
        if (detail.getAmmoStime() != null) {
            this.ammoStime = new Date(detail.getT1().getTime() + detail.getAmmoStime() * 3600000);
        }
        if (detail.getAmmoEtime() != null) {
            this.ammoEtime = new Date(detail.getT1().getTime() + detail.getAmmoEtime() * 3600000);
        }
        if (detail.getMatStime() != null) {
            this.matStime = new Date(detail.getT1().getTime() + detail.getMatStime() * 3600000);
        }
        if (detail.getMatEtime() != null) {
            this.matEtime = new Date(detail.getT1().getTime() + detail.getMatEtime() * 3600000);
        }
        this.ETIME = detail.getETIME();
        this.oilTime = detail.getOilTime();
        this.ammoTime = detail.getAmmoTime();
        this.matTime = detail.getMatTime();
        this.waterTime = detail.getWaterTime();
        this.totalTime = detail.getTotalTime();
        this.t1 = detail.getT1();
        this.delFlag = detail.getDelFlag();
        this.supplySeq = detail.getSupplySeq();
        this.carCount = detail.getCarCount();
    }
}