|
|
package com.sunyo.wlpt.base.model;
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import lombok.Data;
|
|
|
|
|
|
import java.math.BigDecimal;
|
...
|
...
|
@@ -16,6 +17,7 @@ public class CUSTOM_MT8205 { |
|
|
//转运前航班号 9728
|
|
|
private String originflightno;
|
|
|
//转运前航班日期
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
private Date originflightdate;
|
|
|
//转运前主运单号
|
|
|
private String originawbano;
|
...
|
...
|
@@ -26,6 +28,7 @@ public class CUSTOM_MT8205 { |
|
|
//转运后航班号
|
|
|
private String transflightno;
|
|
|
//转运后航班日期
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
private Date transflightdate;
|
|
|
//转运后主运单号
|
|
|
private String transawbano;
|
...
|
...
|
|