|
|
@@ -2,6 +2,7 @@ package com.sundot.airport.blocked.domain;
|
|
2
|
2
|
|
|
3
|
3
|
import java.math.BigDecimal;
|
|
4
|
4
|
import java.util.Date;
|
|
|
5
|
+
|
|
5
|
6
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
6
|
7
|
import io.swagger.annotations.ApiModelProperty;
|
|
7
|
8
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
@@ -11,12 +12,11 @@ import com.sundot.airport.common.core.domain.BaseEntity;
|
|
11
|
12
|
|
|
12
|
13
|
/**
|
|
13
|
14
|
* 每日行李过检查堵统计对象 blocked_luggage_statistics_daily
|
|
14
|
|
- *
|
|
|
15
|
+ *
|
|
15
|
16
|
* @author wangxx
|
|
16
|
17
|
* @date 2026-04-13
|
|
17
|
18
|
*/
|
|
18
|
|
-public class BlockedLuggageStatisticsDaily extends BaseEntity
|
|
19
|
|
-{
|
|
|
19
|
+public class BlockedLuggageStatisticsDaily extends BaseEntity {
|
|
20
|
20
|
private static final long serialVersionUID = 1L;
|
|
21
|
21
|
|
|
22
|
22
|
/** 主键ID */
|
|
|
@@ -197,409 +197,337 @@ public class BlockedLuggageStatisticsDaily extends BaseEntity
|
|
197
|
197
|
@ApiModelProperty("删除标志")
|
|
198
|
198
|
private String delFlag;
|
|
199
|
199
|
|
|
200
|
|
- public void setId(Long id)
|
|
201
|
|
- {
|
|
|
200
|
+ public void setId(Long id) {
|
|
202
|
201
|
this.id = id;
|
|
203
|
202
|
}
|
|
204
|
203
|
|
|
205
|
|
- public Long getId()
|
|
206
|
|
- {
|
|
|
204
|
+ public Long getId() {
|
|
207
|
205
|
return id;
|
|
208
|
206
|
}
|
|
209
|
207
|
|
|
210
|
|
- public void setStatDate(Date statDate)
|
|
211
|
|
- {
|
|
|
208
|
+ public void setStatDate(Date statDate) {
|
|
212
|
209
|
this.statDate = statDate;
|
|
213
|
210
|
}
|
|
214
|
211
|
|
|
215
|
|
- public Date getStatDate()
|
|
216
|
|
- {
|
|
|
212
|
+ public Date getStatDate() {
|
|
217
|
213
|
return statDate;
|
|
218
|
214
|
}
|
|
219
|
215
|
|
|
220
|
|
- public void setShiftType(String shiftType)
|
|
221
|
|
- {
|
|
|
216
|
+ public void setShiftType(String shiftType) {
|
|
222
|
217
|
this.shiftType = shiftType;
|
|
223
|
218
|
}
|
|
224
|
219
|
|
|
225
|
|
- public String getShiftType()
|
|
226
|
|
- {
|
|
|
220
|
+ public String getShiftType() {
|
|
227
|
221
|
return shiftType;
|
|
228
|
222
|
}
|
|
229
|
223
|
|
|
230
|
|
- public void setBrigadeId(Long brigadeId)
|
|
231
|
|
- {
|
|
|
224
|
+ public void setBrigadeId(Long brigadeId) {
|
|
232
|
225
|
this.brigadeId = brigadeId;
|
|
233
|
226
|
}
|
|
234
|
227
|
|
|
235
|
|
- public Long getBrigadeId()
|
|
236
|
|
- {
|
|
|
228
|
+ public Long getBrigadeId() {
|
|
237
|
229
|
return brigadeId;
|
|
238
|
230
|
}
|
|
239
|
231
|
|
|
240
|
|
- public void setBrigadeName(String brigadeName)
|
|
241
|
|
- {
|
|
|
232
|
+ public void setBrigadeName(String brigadeName) {
|
|
242
|
233
|
this.brigadeName = brigadeName;
|
|
243
|
234
|
}
|
|
244
|
235
|
|
|
245
|
|
- public String getBrigadeName()
|
|
246
|
|
- {
|
|
|
236
|
+ public String getBrigadeName() {
|
|
247
|
237
|
return brigadeName;
|
|
248
|
238
|
}
|
|
249
|
239
|
|
|
250
|
|
- public void setT1TravelLuggageCount(Integer t1TravelLuggageCount)
|
|
251
|
|
- {
|
|
|
240
|
+ public void setT1TravelLuggageCount(Integer t1TravelLuggageCount) {
|
|
252
|
241
|
this.t1TravelLuggageCount = t1TravelLuggageCount;
|
|
253
|
242
|
}
|
|
254
|
243
|
|
|
255
|
|
- public Integer getT1TravelLuggageCount()
|
|
256
|
|
- {
|
|
|
244
|
+ public Integer getT1TravelLuggageCount() {
|
|
257
|
245
|
return t1TravelLuggageCount;
|
|
258
|
246
|
}
|
|
259
|
247
|
|
|
260
|
|
- public void setT1WalkLuggageCount(Integer t1WalkLuggageCount)
|
|
261
|
|
- {
|
|
|
248
|
+ public void setT1WalkLuggageCount(Integer t1WalkLuggageCount) {
|
|
262
|
249
|
this.t1WalkLuggageCount = t1WalkLuggageCount;
|
|
263
|
250
|
}
|
|
264
|
251
|
|
|
265
|
|
- public Integer getT1WalkLuggageCount()
|
|
266
|
|
- {
|
|
|
252
|
+ public Integer getT1WalkLuggageCount() {
|
|
267
|
253
|
return t1WalkLuggageCount;
|
|
268
|
254
|
}
|
|
269
|
255
|
|
|
270
|
|
- public void setT2TravelLuggageCount(Integer t2TravelLuggageCount)
|
|
271
|
|
- {
|
|
|
256
|
+ public void setT2TravelLuggageCount(Integer t2TravelLuggageCount) {
|
|
272
|
257
|
this.t2TravelLuggageCount = t2TravelLuggageCount;
|
|
273
|
258
|
}
|
|
274
|
259
|
|
|
275
|
|
- public Integer getT2TravelLuggageCount()
|
|
276
|
|
- {
|
|
|
260
|
+ public Integer getT2TravelLuggageCount() {
|
|
277
|
261
|
return t2TravelLuggageCount;
|
|
278
|
262
|
}
|
|
279
|
263
|
|
|
280
|
|
- public void setT2WalkLuggageCount(Integer t2WalkLuggageCount)
|
|
281
|
|
- {
|
|
|
264
|
+ public void setT2WalkLuggageCount(Integer t2WalkLuggageCount) {
|
|
282
|
265
|
this.t2WalkLuggageCount = t2WalkLuggageCount;
|
|
283
|
266
|
}
|
|
284
|
267
|
|
|
285
|
|
- public Integer getT2WalkLuggageCount()
|
|
286
|
|
- {
|
|
|
268
|
+ public Integer getT2WalkLuggageCount() {
|
|
287
|
269
|
return t2WalkLuggageCount;
|
|
288
|
270
|
}
|
|
289
|
271
|
|
|
290
|
|
- public void setT1TravelBlockedCount(Integer t1TravelBlockedCount)
|
|
291
|
|
- {
|
|
|
272
|
+ public void setT1TravelBlockedCount(Integer t1TravelBlockedCount) {
|
|
292
|
273
|
this.t1TravelBlockedCount = t1TravelBlockedCount;
|
|
293
|
274
|
}
|
|
294
|
275
|
|
|
295
|
|
- public Integer getT1TravelBlockedCount()
|
|
296
|
|
- {
|
|
|
276
|
+ public Integer getT1TravelBlockedCount() {
|
|
297
|
277
|
return t1TravelBlockedCount;
|
|
298
|
278
|
}
|
|
299
|
279
|
|
|
300
|
|
- public void setT2TravelBlockedCount(Integer t2TravelBlockedCount)
|
|
301
|
|
- {
|
|
|
280
|
+ public void setT2TravelBlockedCount(Integer t2TravelBlockedCount) {
|
|
302
|
281
|
this.t2TravelBlockedCount = t2TravelBlockedCount;
|
|
303
|
282
|
}
|
|
304
|
283
|
|
|
305
|
|
- public Integer getT2TravelBlockedCount()
|
|
306
|
|
- {
|
|
|
284
|
+ public Integer getT2TravelBlockedCount() {
|
|
307
|
285
|
return t2TravelBlockedCount;
|
|
308
|
286
|
}
|
|
309
|
287
|
|
|
310
|
|
- public void setT1WalkBlockedCount(Integer t1WalkBlockedCount)
|
|
311
|
|
- {
|
|
|
288
|
+ public void setT1WalkBlockedCount(Integer t1WalkBlockedCount) {
|
|
312
|
289
|
this.t1WalkBlockedCount = t1WalkBlockedCount;
|
|
313
|
290
|
}
|
|
314
|
291
|
|
|
315
|
|
- public Integer getT1WalkBlockedCount()
|
|
316
|
|
- {
|
|
|
292
|
+ public Integer getT1WalkBlockedCount() {
|
|
317
|
293
|
return t1WalkBlockedCount;
|
|
318
|
294
|
}
|
|
319
|
295
|
|
|
320
|
|
- public void setT2WalkBlockedCount(Integer t2WalkBlockedCount)
|
|
321
|
|
- {
|
|
|
296
|
+ public void setT2WalkBlockedCount(Integer t2WalkBlockedCount) {
|
|
322
|
297
|
this.t2WalkBlockedCount = t2WalkBlockedCount;
|
|
323
|
298
|
}
|
|
324
|
299
|
|
|
325
|
|
- public Integer getT2WalkBlockedCount()
|
|
326
|
|
- {
|
|
|
300
|
+ public Integer getT2WalkBlockedCount() {
|
|
327
|
301
|
return t2WalkBlockedCount;
|
|
328
|
302
|
}
|
|
329
|
303
|
|
|
330
|
|
- public void setT1ReviewImageTotal(Integer t1ReviewImageTotal)
|
|
331
|
|
- {
|
|
|
304
|
+ public void setT1ReviewImageTotal(Integer t1ReviewImageTotal) {
|
|
332
|
305
|
this.t1ReviewImageTotal = t1ReviewImageTotal;
|
|
333
|
306
|
}
|
|
334
|
307
|
|
|
335
|
|
- public Integer getT1ReviewImageTotal()
|
|
336
|
|
- {
|
|
|
308
|
+ public Integer getT1ReviewImageTotal() {
|
|
337
|
309
|
return t1ReviewImageTotal;
|
|
338
|
310
|
}
|
|
339
|
311
|
|
|
340
|
|
- public void setT1AiMarkTotal(Integer t1AiMarkTotal)
|
|
341
|
|
- {
|
|
|
312
|
+ public void setT1AiMarkTotal(Integer t1AiMarkTotal) {
|
|
342
|
313
|
this.t1AiMarkTotal = t1AiMarkTotal;
|
|
343
|
314
|
}
|
|
344
|
315
|
|
|
345
|
|
- public Integer getT1AiMarkTotal()
|
|
346
|
|
- {
|
|
|
316
|
+ public Integer getT1AiMarkTotal() {
|
|
347
|
317
|
return t1AiMarkTotal;
|
|
348
|
318
|
}
|
|
349
|
319
|
|
|
350
|
|
- public void setT1AiErrorTotal(Integer t1AiErrorTotal)
|
|
351
|
|
- {
|
|
|
320
|
+ public void setT1AiErrorTotal(Integer t1AiErrorTotal) {
|
|
352
|
321
|
this.t1AiErrorTotal = t1AiErrorTotal;
|
|
353
|
322
|
}
|
|
354
|
323
|
|
|
355
|
|
- public Integer getT1AiErrorTotal()
|
|
356
|
|
- {
|
|
|
324
|
+ public Integer getT1AiErrorTotal() {
|
|
357
|
325
|
return t1AiErrorTotal;
|
|
358
|
326
|
}
|
|
359
|
327
|
|
|
360
|
|
- public void setT1AiMissTotal(Integer t1AiMissTotal)
|
|
361
|
|
- {
|
|
|
328
|
+ public void setT1AiMissTotal(Integer t1AiMissTotal) {
|
|
362
|
329
|
this.t1AiMissTotal = t1AiMissTotal;
|
|
363
|
330
|
}
|
|
364
|
331
|
|
|
365
|
|
- public Integer getT1AiMissTotal()
|
|
366
|
|
- {
|
|
|
332
|
+ public Integer getT1AiMissTotal() {
|
|
367
|
333
|
return t1AiMissTotal;
|
|
368
|
334
|
}
|
|
369
|
335
|
|
|
370
|
|
- public void setT2ReviewImageTotal(Integer t2ReviewImageTotal)
|
|
371
|
|
- {
|
|
|
336
|
+ public void setT2ReviewImageTotal(Integer t2ReviewImageTotal) {
|
|
372
|
337
|
this.t2ReviewImageTotal = t2ReviewImageTotal;
|
|
373
|
338
|
}
|
|
374
|
339
|
|
|
375
|
|
- public Integer getT2ReviewImageTotal()
|
|
376
|
|
- {
|
|
|
340
|
+ public Integer getT2ReviewImageTotal() {
|
|
377
|
341
|
return t2ReviewImageTotal;
|
|
378
|
342
|
}
|
|
379
|
343
|
|
|
380
|
|
- public void setT2AiMarkTotal(Integer t2AiMarkTotal)
|
|
381
|
|
- {
|
|
|
344
|
+ public void setT2AiMarkTotal(Integer t2AiMarkTotal) {
|
|
382
|
345
|
this.t2AiMarkTotal = t2AiMarkTotal;
|
|
383
|
346
|
}
|
|
384
|
347
|
|
|
385
|
|
- public Integer getT2AiMarkTotal()
|
|
386
|
|
- {
|
|
|
348
|
+ public Integer getT2AiMarkTotal() {
|
|
387
|
349
|
return t2AiMarkTotal;
|
|
388
|
350
|
}
|
|
389
|
351
|
|
|
390
|
|
- public void setT2AiErrorTotal(Integer t2AiErrorTotal)
|
|
391
|
|
- {
|
|
|
352
|
+ public void setT2AiErrorTotal(Integer t2AiErrorTotal) {
|
|
392
|
353
|
this.t2AiErrorTotal = t2AiErrorTotal;
|
|
393
|
354
|
}
|
|
394
|
355
|
|
|
395
|
|
- public Integer getT2AiErrorTotal()
|
|
396
|
|
- {
|
|
|
356
|
+ public Integer getT2AiErrorTotal() {
|
|
397
|
357
|
return t2AiErrorTotal;
|
|
398
|
358
|
}
|
|
399
|
359
|
|
|
400
|
|
- public void setT2AiMissTotal(Integer t2AiMissTotal)
|
|
401
|
|
- {
|
|
|
360
|
+ public void setT2AiMissTotal(Integer t2AiMissTotal) {
|
|
402
|
361
|
this.t2AiMissTotal = t2AiMissTotal;
|
|
403
|
362
|
}
|
|
404
|
363
|
|
|
405
|
|
- public Integer getT2AiMissTotal()
|
|
406
|
|
- {
|
|
|
364
|
+ public Integer getT2AiMissTotal() {
|
|
407
|
365
|
return t2AiMissTotal;
|
|
408
|
366
|
}
|
|
409
|
367
|
|
|
410
|
|
- public void setOtherVipCount(Integer otherVipCount)
|
|
411
|
|
- {
|
|
|
368
|
+ public void setOtherVipCount(Integer otherVipCount) {
|
|
412
|
369
|
this.otherVipCount = otherVipCount;
|
|
413
|
370
|
}
|
|
414
|
371
|
|
|
415
|
|
- public Integer getOtherVipCount()
|
|
416
|
|
- {
|
|
|
372
|
+ public Integer getOtherVipCount() {
|
|
417
|
373
|
return otherVipCount;
|
|
418
|
374
|
}
|
|
419
|
375
|
|
|
420
|
|
- public void setT1TravelBlockRate(BigDecimal t1TravelBlockRate)
|
|
421
|
|
- {
|
|
|
376
|
+ public void setT1TravelBlockRate(BigDecimal t1TravelBlockRate) {
|
|
422
|
377
|
this.t1TravelBlockRate = t1TravelBlockRate;
|
|
423
|
378
|
}
|
|
424
|
379
|
|
|
425
|
|
- public BigDecimal getT1TravelBlockRate()
|
|
426
|
|
- {
|
|
|
380
|
+ public BigDecimal getT1TravelBlockRate() {
|
|
427
|
381
|
return t1TravelBlockRate;
|
|
428
|
382
|
}
|
|
429
|
383
|
|
|
430
|
|
- public void setT2TravelBlockRate(BigDecimal t2TravelBlockRate)
|
|
431
|
|
- {
|
|
|
384
|
+ public void setT2TravelBlockRate(BigDecimal t2TravelBlockRate) {
|
|
432
|
385
|
this.t2TravelBlockRate = t2TravelBlockRate;
|
|
433
|
386
|
}
|
|
434
|
387
|
|
|
435
|
|
- public BigDecimal getT2TravelBlockRate()
|
|
436
|
|
- {
|
|
|
388
|
+ public BigDecimal getT2TravelBlockRate() {
|
|
437
|
389
|
return t2TravelBlockRate;
|
|
438
|
390
|
}
|
|
439
|
391
|
|
|
440
|
|
- public void setT1WalkBlockRate(BigDecimal t1WalkBlockRate)
|
|
441
|
|
- {
|
|
|
392
|
+ public void setT1WalkBlockRate(BigDecimal t1WalkBlockRate) {
|
|
442
|
393
|
this.t1WalkBlockRate = t1WalkBlockRate;
|
|
443
|
394
|
}
|
|
444
|
395
|
|
|
445
|
|
- public BigDecimal getT1WalkBlockRate()
|
|
446
|
|
- {
|
|
|
396
|
+ public BigDecimal getT1WalkBlockRate() {
|
|
447
|
397
|
return t1WalkBlockRate;
|
|
448
|
398
|
}
|
|
449
|
399
|
|
|
450
|
|
- public void setT2WalkBlockRate(BigDecimal t2WalkBlockRate)
|
|
451
|
|
- {
|
|
|
400
|
+ public void setT2WalkBlockRate(BigDecimal t2WalkBlockRate) {
|
|
452
|
401
|
this.t2WalkBlockRate = t2WalkBlockRate;
|
|
453
|
402
|
}
|
|
454
|
403
|
|
|
455
|
|
- public BigDecimal getT2WalkBlockRate()
|
|
456
|
|
- {
|
|
|
404
|
+ public BigDecimal getT2WalkBlockRate() {
|
|
457
|
405
|
return t2WalkBlockRate;
|
|
458
|
406
|
}
|
|
459
|
407
|
|
|
460
|
|
- public void setTotalBlockRate(BigDecimal totalBlockRate)
|
|
461
|
|
- {
|
|
|
408
|
+ public void setTotalBlockRate(BigDecimal totalBlockRate) {
|
|
462
|
409
|
this.totalBlockRate = totalBlockRate;
|
|
463
|
410
|
}
|
|
464
|
411
|
|
|
465
|
|
- public BigDecimal getTotalBlockRate()
|
|
466
|
|
- {
|
|
|
412
|
+ public BigDecimal getTotalBlockRate() {
|
|
467
|
413
|
return totalBlockRate;
|
|
468
|
414
|
}
|
|
469
|
415
|
|
|
470
|
|
- public void setDailyBlockRate(BigDecimal dailyBlockRate)
|
|
471
|
|
- {
|
|
|
416
|
+ public void setDailyBlockRate(BigDecimal dailyBlockRate) {
|
|
472
|
417
|
this.dailyBlockRate = dailyBlockRate;
|
|
473
|
418
|
}
|
|
474
|
419
|
|
|
475
|
|
- public BigDecimal getDailyBlockRate()
|
|
476
|
|
- {
|
|
|
420
|
+ public BigDecimal getDailyBlockRate() {
|
|
477
|
421
|
return dailyBlockRate;
|
|
478
|
422
|
}
|
|
479
|
423
|
|
|
480
|
|
- public void setTotalLuggageCount(Integer totalLuggageCount)
|
|
481
|
|
- {
|
|
|
424
|
+ public void setTotalLuggageCount(Integer totalLuggageCount) {
|
|
482
|
425
|
this.totalLuggageCount = totalLuggageCount;
|
|
483
|
426
|
}
|
|
484
|
427
|
|
|
485
|
|
- public Integer getTotalLuggageCount()
|
|
486
|
|
- {
|
|
|
428
|
+ public Integer getTotalLuggageCount() {
|
|
487
|
429
|
return totalLuggageCount;
|
|
488
|
430
|
}
|
|
489
|
431
|
|
|
490
|
|
- public void setTotalBlockedCount(Integer totalBlockedCount)
|
|
491
|
|
- {
|
|
|
432
|
+ public void setTotalBlockedCount(Integer totalBlockedCount) {
|
|
492
|
433
|
this.totalBlockedCount = totalBlockedCount;
|
|
493
|
434
|
}
|
|
494
|
435
|
|
|
495
|
|
- public Integer getTotalBlockedCount()
|
|
496
|
|
- {
|
|
|
436
|
+ public Integer getTotalBlockedCount() {
|
|
497
|
437
|
return totalBlockedCount;
|
|
498
|
438
|
}
|
|
499
|
439
|
|
|
500
|
|
- public void setDailyBlockedCount(Integer dailyBlockedCount)
|
|
501
|
|
- {
|
|
|
440
|
+ public void setDailyBlockedCount(Integer dailyBlockedCount) {
|
|
502
|
441
|
this.dailyBlockedCount = dailyBlockedCount;
|
|
503
|
442
|
}
|
|
504
|
443
|
|
|
505
|
|
- public Integer getDailyBlockedCount()
|
|
506
|
|
- {
|
|
|
444
|
+ public Integer getDailyBlockedCount() {
|
|
507
|
445
|
return dailyBlockedCount;
|
|
508
|
446
|
}
|
|
509
|
447
|
|
|
510
|
|
- public void setAiReviewImageTotal(Integer aiReviewImageTotal)
|
|
511
|
|
- {
|
|
|
448
|
+ public void setAiReviewImageTotal(Integer aiReviewImageTotal) {
|
|
512
|
449
|
this.aiReviewImageTotal = aiReviewImageTotal;
|
|
513
|
450
|
}
|
|
514
|
451
|
|
|
515
|
|
- public Integer getAiReviewImageTotal()
|
|
516
|
|
- {
|
|
|
452
|
+ public Integer getAiReviewImageTotal() {
|
|
517
|
453
|
return aiReviewImageTotal;
|
|
518
|
454
|
}
|
|
519
|
455
|
|
|
520
|
|
- public void setAiMarkTotal(Integer aiMarkTotal)
|
|
521
|
|
- {
|
|
|
456
|
+ public void setAiMarkTotal(Integer aiMarkTotal) {
|
|
522
|
457
|
this.aiMarkTotal = aiMarkTotal;
|
|
523
|
458
|
}
|
|
524
|
459
|
|
|
525
|
|
- public Integer getAiMarkTotal()
|
|
526
|
|
- {
|
|
|
460
|
+ public Integer getAiMarkTotal() {
|
|
527
|
461
|
return aiMarkTotal;
|
|
528
|
462
|
}
|
|
529
|
463
|
|
|
530
|
|
- public void setAiErrorImageTotal(Integer aiErrorImageTotal)
|
|
531
|
|
- {
|
|
|
464
|
+ public void setAiErrorImageTotal(Integer aiErrorImageTotal) {
|
|
532
|
465
|
this.aiErrorImageTotal = aiErrorImageTotal;
|
|
533
|
466
|
}
|
|
534
|
467
|
|
|
535
|
|
- public Integer getAiErrorImageTotal()
|
|
536
|
|
- {
|
|
|
468
|
+ public Integer getAiErrorImageTotal() {
|
|
537
|
469
|
return aiErrorImageTotal;
|
|
538
|
470
|
}
|
|
539
|
471
|
|
|
540
|
|
- public void setAiMissImageTotal(Integer aiMissImageTotal)
|
|
541
|
|
- {
|
|
|
472
|
+ public void setAiMissImageTotal(Integer aiMissImageTotal) {
|
|
542
|
473
|
this.aiMissImageTotal = aiMissImageTotal;
|
|
543
|
474
|
}
|
|
544
|
475
|
|
|
545
|
|
- public Integer getAiMissImageTotal()
|
|
546
|
|
- {
|
|
|
476
|
+ public Integer getAiMissImageTotal() {
|
|
547
|
477
|
return aiMissImageTotal;
|
|
548
|
478
|
}
|
|
549
|
479
|
|
|
550
|
|
- public void setDelFlag(String delFlag)
|
|
551
|
|
- {
|
|
|
480
|
+ public void setDelFlag(String delFlag) {
|
|
552
|
481
|
this.delFlag = delFlag;
|
|
553
|
482
|
}
|
|
554
|
483
|
|
|
555
|
|
- public String getDelFlag()
|
|
556
|
|
- {
|
|
|
484
|
+ public String getDelFlag() {
|
|
557
|
485
|
return delFlag;
|
|
558
|
486
|
}
|
|
559
|
487
|
|
|
560
|
488
|
@Override
|
|
561
|
489
|
public String toString() {
|
|
562
|
490
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
|
563
|
|
- .append("id", getId())
|
|
564
|
|
- .append("statDate", getStatDate())
|
|
565
|
|
- .append("shiftType", getShiftType())
|
|
566
|
|
- .append("brigadeId", getBrigadeId())
|
|
567
|
|
- .append("brigadeName", getBrigadeName())
|
|
568
|
|
- .append("t1TravelLuggageCount", getT1TravelLuggageCount())
|
|
569
|
|
- .append("t1WalkLuggageCount", getT1WalkLuggageCount())
|
|
570
|
|
- .append("t2TravelLuggageCount", getT2TravelLuggageCount())
|
|
571
|
|
- .append("t2WalkLuggageCount", getT2WalkLuggageCount())
|
|
572
|
|
- .append("t1TravelBlockedCount", getT1TravelBlockedCount())
|
|
573
|
|
- .append("t2TravelBlockedCount", getT2TravelBlockedCount())
|
|
574
|
|
- .append("t1WalkBlockedCount", getT1WalkBlockedCount())
|
|
575
|
|
- .append("t2WalkBlockedCount", getT2WalkBlockedCount())
|
|
576
|
|
- .append("t1ReviewImageTotal", getT1ReviewImageTotal())
|
|
577
|
|
- .append("t1AiMarkTotal", getT1AiMarkTotal())
|
|
578
|
|
- .append("t1AiErrorTotal", getT1AiErrorTotal())
|
|
579
|
|
- .append("t1AiMissTotal", getT1AiMissTotal())
|
|
580
|
|
- .append("t2ReviewImageTotal", getT2ReviewImageTotal())
|
|
581
|
|
- .append("t2AiMarkTotal", getT2AiMarkTotal())
|
|
582
|
|
- .append("t2AiErrorTotal", getT2AiErrorTotal())
|
|
583
|
|
- .append("t2AiMissTotal", getT2AiMissTotal())
|
|
584
|
|
- .append("otherVipCount", getOtherVipCount())
|
|
585
|
|
- .append("t1TravelBlockRate", getT1TravelBlockRate())
|
|
586
|
|
- .append("t2TravelBlockRate", getT2TravelBlockRate())
|
|
587
|
|
- .append("t1WalkBlockRate", getT1WalkBlockRate())
|
|
588
|
|
- .append("t2WalkBlockRate", getT2WalkBlockRate())
|
|
589
|
|
- .append("totalBlockRate", getTotalBlockRate())
|
|
590
|
|
- .append("dailyBlockRate", getDailyBlockRate())
|
|
591
|
|
- .append("totalLuggageCount", getTotalLuggageCount())
|
|
592
|
|
- .append("totalBlockedCount", getTotalBlockedCount())
|
|
593
|
|
- .append("dailyBlockedCount", getDailyBlockedCount())
|
|
594
|
|
- .append("aiReviewImageTotal", getAiReviewImageTotal())
|
|
595
|
|
- .append("aiMarkTotal", getAiMarkTotal())
|
|
596
|
|
- .append("aiErrorImageTotal", getAiErrorImageTotal())
|
|
597
|
|
- .append("aiMissImageTotal", getAiMissImageTotal())
|
|
598
|
|
- .append("createBy", getCreateBy())
|
|
599
|
|
- .append("createTime", getCreateTime())
|
|
600
|
|
- .append("updateBy", getUpdateBy())
|
|
601
|
|
- .append("updateTime", getUpdateTime())
|
|
602
|
|
- .append("remark", getRemark())
|
|
603
|
|
- .toString();
|
|
|
491
|
+ .append("id", getId())
|
|
|
492
|
+ .append("statDate", getStatDate())
|
|
|
493
|
+ .append("shiftType", getShiftType())
|
|
|
494
|
+ .append("brigadeId", getBrigadeId())
|
|
|
495
|
+ .append("brigadeName", getBrigadeName())
|
|
|
496
|
+ .append("t1TravelLuggageCount", getT1TravelLuggageCount())
|
|
|
497
|
+ .append("t1WalkLuggageCount", getT1WalkLuggageCount())
|
|
|
498
|
+ .append("t2TravelLuggageCount", getT2TravelLuggageCount())
|
|
|
499
|
+ .append("t2WalkLuggageCount", getT2WalkLuggageCount())
|
|
|
500
|
+ .append("t1TravelBlockedCount", getT1TravelBlockedCount())
|
|
|
501
|
+ .append("t2TravelBlockedCount", getT2TravelBlockedCount())
|
|
|
502
|
+ .append("t1WalkBlockedCount", getT1WalkBlockedCount())
|
|
|
503
|
+ .append("t2WalkBlockedCount", getT2WalkBlockedCount())
|
|
|
504
|
+ .append("t1ReviewImageTotal", getT1ReviewImageTotal())
|
|
|
505
|
+ .append("t1AiMarkTotal", getT1AiMarkTotal())
|
|
|
506
|
+ .append("t1AiErrorTotal", getT1AiErrorTotal())
|
|
|
507
|
+ .append("t1AiMissTotal", getT1AiMissTotal())
|
|
|
508
|
+ .append("t2ReviewImageTotal", getT2ReviewImageTotal())
|
|
|
509
|
+ .append("t2AiMarkTotal", getT2AiMarkTotal())
|
|
|
510
|
+ .append("t2AiErrorTotal", getT2AiErrorTotal())
|
|
|
511
|
+ .append("t2AiMissTotal", getT2AiMissTotal())
|
|
|
512
|
+ .append("otherVipCount", getOtherVipCount())
|
|
|
513
|
+ .append("t1TravelBlockRate", getT1TravelBlockRate())
|
|
|
514
|
+ .append("t2TravelBlockRate", getT2TravelBlockRate())
|
|
|
515
|
+ .append("t1WalkBlockRate", getT1WalkBlockRate())
|
|
|
516
|
+ .append("t2WalkBlockRate", getT2WalkBlockRate())
|
|
|
517
|
+ .append("totalBlockRate", getTotalBlockRate())
|
|
|
518
|
+ .append("dailyBlockRate", getDailyBlockRate())
|
|
|
519
|
+ .append("totalLuggageCount", getTotalLuggageCount())
|
|
|
520
|
+ .append("totalBlockedCount", getTotalBlockedCount())
|
|
|
521
|
+ .append("dailyBlockedCount", getDailyBlockedCount())
|
|
|
522
|
+ .append("aiReviewImageTotal", getAiReviewImageTotal())
|
|
|
523
|
+ .append("aiMarkTotal", getAiMarkTotal())
|
|
|
524
|
+ .append("aiErrorImageTotal", getAiErrorImageTotal())
|
|
|
525
|
+ .append("aiMissImageTotal", getAiMissImageTotal())
|
|
|
526
|
+ .append("createBy", getCreateBy())
|
|
|
527
|
+ .append("createTime", getCreateTime())
|
|
|
528
|
+ .append("updateBy", getUpdateBy())
|
|
|
529
|
+ .append("updateTime", getUpdateTime())
|
|
|
530
|
+ .append("remark", getRemark())
|
|
|
531
|
+ .toString();
|
|
604
|
532
|
}
|
|
605
|
533
|
}
|