作者 xudada

国际转运申请model

1 package com.sunyo.wlpt.base.model; 1 package com.sunyo.wlpt.base.model;
2 2
  3 +import com.fasterxml.jackson.annotation.JsonFormat;
3 import lombok.Data; 4 import lombok.Data;
4 5
5 import java.math.BigDecimal; 6 import java.math.BigDecimal;
@@ -16,6 +17,7 @@ public class CUSTOM_MT8205 { @@ -16,6 +17,7 @@ public class CUSTOM_MT8205 {
16 //转运前航班号 9728 17 //转运前航班号 9728
17 private String originflightno; 18 private String originflightno;
18 //转运前航班日期 19 //转运前航班日期
  20 + @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
19 private Date originflightdate; 21 private Date originflightdate;
20 //转运前主运单号 22 //转运前主运单号
21 private String originawbano; 23 private String originawbano;
@@ -26,6 +28,7 @@ public class CUSTOM_MT8205 { @@ -26,6 +28,7 @@ public class CUSTOM_MT8205 {
26 //转运后航班号 28 //转运后航班号
27 private String transflightno; 29 private String transflightno;
28 //转运后航班日期 30 //转运后航班日期
  31 + @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
29 private Date transflightdate; 32 private Date transflightdate;
30 //转运后主运单号 33 //转运后主运单号
31 private String transawbano; 34 private String transawbano;