Commit 558ef21dc51e150e28c6d172015910c49fde9837
1 parent
ab482d73
定时检测超时任务
Showing
1 changed file
with
17 additions
and
0 deletions
src/main/java/com/order/erp/domain/vo/order/OrderTrackStageVO.java
... | ... | @@ -4,6 +4,7 @@ import lombok.*; |
4 | 4 | import lombok.experimental.SuperBuilder; |
5 | 5 | |
6 | 6 | import java.io.Serializable; |
7 | +import java.time.LocalDateTime; | |
7 | 8 | |
8 | 9 | /** |
9 | 10 | * 订单-跟单环节(OrderTrackStage)实体类 |
... | ... | @@ -34,6 +35,10 @@ public class OrderTrackStageVO implements Serializable { |
34 | 35 | */ |
35 | 36 | private String ppConfirmResult; |
36 | 37 | /** |
38 | + * pp样品确认时间 | |
39 | + * */ | |
40 | + private String ppConfirmTime; | |
41 | + /** | |
37 | 42 | * EXTRA,SHOWROOM,ONLINE sample发送时间 |
38 | 43 | */ |
39 | 44 | private String esoSampleSendTime; |
... | ... | @@ -46,6 +51,10 @@ public class OrderTrackStageVO implements Serializable { |
46 | 51 | */ |
47 | 52 | private String shippmentSampleConfirmResult; |
48 | 53 | /** |
54 | + * shipment sample确认时间 | |
55 | + */ | |
56 | + private String shippmentSampleConfirmTime; | |
57 | + /** | |
49 | 58 | * 自测通过时间 |
50 | 59 | */ |
51 | 60 | private String selfTestPassTime; |
... | ... | @@ -58,6 +67,10 @@ public class OrderTrackStageVO implements Serializable { |
58 | 67 | */ |
59 | 68 | private String aitexTestFinishResult; |
60 | 69 | /** |
70 | + * Aitex确认时间 | |
71 | + */ | |
72 | + private String aitexTestFinishTime; | |
73 | + /** | |
61 | 74 | * SGS测试发送时间 |
62 | 75 | */ |
63 | 76 | private String sgsTestSendTime; |
... | ... | @@ -66,6 +79,10 @@ public class OrderTrackStageVO implements Serializable { |
66 | 79 | */ |
67 | 80 | private String sgsTestFinishResult; |
68 | 81 | /** |
82 | + * SGS确认时间 | |
83 | + */ | |
84 | + private String sgsTestFinishTime; | |
85 | + /** | |
69 | 86 | * Barcode sticker arrival time |
70 | 87 | */ |
71 | 88 | private String barcodeStickerArrivalTime; | ... | ... |