作者 xudada

1201,5201,分拨实体增加字段

@@ -9,8 +9,11 @@ import java.util.List; @@ -9,8 +9,11 @@ import java.util.List;
9 9
10 @Data 10 @Data
11 public class NMMS_CUSTOM_MT1201 { 11 public class NMMS_CUSTOM_MT1201 {
  12 + private String carrierno;
  13 + private String rcfdep;
  14 + private String segment;
12 private String uuid; 15 private String uuid;
13 - 16 + private String waybill;
14 private String awba; 17 private String awba;
15 18
16 private String awbh; 19 private String awbh;
@@ -24,8 +27,7 @@ public class NMMS_CUSTOM_MT1201 { @@ -24,8 +27,7 @@ public class NMMS_CUSTOM_MT1201 {
24 private String carrier; 27 private String carrier;
25 28
26 private String flightno; 29 private String flightno;
27 -  
28 - @JsonFormat(pattern = "yyyy-MM-dd") 30 + @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
29 private Date flightdate; 31 private Date flightdate;
30 32
31 private String originstation; 33 private String originstation;
@@ -34,6 +36,10 @@ public class NMMS_CUSTOM_MT1201 { @@ -34,6 +36,10 @@ public class NMMS_CUSTOM_MT1201 {
34 36
35 private BigDecimal piece; 37 private BigDecimal piece;
36 38
  39 + private BigDecimal pcs;
  40 +
  41 + private BigDecimal wei;
  42 +
37 private BigDecimal weight; 43 private BigDecimal weight;
38 44
39 private String splitcode; 45 private String splitcode;
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.util.Date; 6 import java.util.Date;
@@ -7,8 +8,11 @@ import java.util.List; @@ -7,8 +8,11 @@ import java.util.List;
7 8
8 @Data 9 @Data
9 public class NMMS_CUSTOM_MT520X { 10 public class NMMS_CUSTOM_MT520X {
  11 + private String carrierno;
  12 + private String segment;
10 private String uuid; 13 private String uuid;
11 - 14 + private String waybill;
  15 + private String customText;
12 private String awba; 16 private String awba;
13 17
14 private String awbh; 18 private String awbh;
@@ -16,7 +20,7 @@ public class NMMS_CUSTOM_MT520X { @@ -16,7 +20,7 @@ public class NMMS_CUSTOM_MT520X {
16 private String carrier; 20 private String carrier;
17 21
18 private String flightno; 22 private String flightno;
19 - 23 + @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
20 private Date flightdate; 24 private Date flightdate;
21 25
22 private String originstation; 26 private String originstation;
@@ -26,7 +30,7 @@ public class NMMS_CUSTOM_MT520X { @@ -26,7 +30,7 @@ public class NMMS_CUSTOM_MT520X {
26 private Integer piece; 30 private Integer piece;
27 31
28 private Long weight; 32 private Long weight;
29 - 33 + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
30 private Date starttime; 34 private Date starttime;
31 35
32 private Date endtime; 36 private Date endtime;
  1 +package com.sunyo.wlpt.base.model;
  2 +
  3 +import com.fasterxml.jackson.annotation.JsonFormat;
  4 +
  5 +import java.util.Date;
  6 +
  7 +public class NMMS_CUSTOM_TRANS {
  8 + private String uuid;
  9 +
  10 + private String uuid1201;
  11 +
  12 + private String awba;
  13 +
  14 + private String carrier;
  15 +
  16 + private String flightno;
  17 + @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
  18 + private Date flightdate;
  19 +
  20 + private String turnpiece;
  21 +
  22 + private Long turnweight;
  23 +
  24 + private String customcode;
  25 +
  26 + private String turnunloading;
  27 +
  28 + private String pno;
  29 +
  30 + private String status;
  31 +
  32 + private String turntype;
  33 +
  34 + private String goodsname;
  35 +
  36 + private Boolean isdelete;
  37 +
  38 + private String ext1;
  39 +
  40 + private String ext2;
  41 +
  42 + private String ext3;
  43 +
  44 + private String ext4;
  45 +
  46 + private String ext5;
  47 +
  48 + public String getUuid() {
  49 + return uuid;
  50 + }
  51 +
  52 + public void setUuid(String uuid) {
  53 + this.uuid = uuid == null ? null : uuid.trim();
  54 + }
  55 +
  56 + public String getUuid1201() {
  57 + return uuid1201;
  58 + }
  59 +
  60 + public void setUuid1201(String uuid1201) {
  61 + this.uuid1201 = uuid1201 == null ? null : uuid1201.trim();
  62 + }
  63 +
  64 + public String getAwba() {
  65 + return awba;
  66 + }
  67 +
  68 + public void setAwba(String awba) {
  69 + this.awba = awba == null ? null : awba.trim();
  70 + }
  71 +
  72 + public String getCarrier() {
  73 + return carrier;
  74 + }
  75 +
  76 + public void setCarrier(String carrier) {
  77 + this.carrier = carrier == null ? null : carrier.trim();
  78 + }
  79 +
  80 + public String getFlightno() {
  81 + return flightno;
  82 + }
  83 +
  84 + public void setFlightno(String flightno) {
  85 + this.flightno = flightno == null ? null : flightno.trim();
  86 + }
  87 +
  88 + public Date getFlightdate() {
  89 + return flightdate;
  90 + }
  91 +
  92 + public void setFlightdate(Date flightdate) {
  93 + this.flightdate = flightdate;
  94 + }
  95 +
  96 + public String getTurnpiece() {
  97 + return turnpiece;
  98 + }
  99 +
  100 + public void setTurnpiece(String turnpiece) {
  101 + this.turnpiece = turnpiece == null ? null : turnpiece.trim();
  102 + }
  103 +
  104 + public Long getTurnweight() {
  105 + return turnweight;
  106 + }
  107 +
  108 + public void setTurnweight(Long turnweight) {
  109 + this.turnweight = turnweight;
  110 + }
  111 +
  112 + public String getCustomcode() {
  113 + return customcode;
  114 + }
  115 +
  116 + public void setCustomcode(String customcode) {
  117 + this.customcode = customcode == null ? null : customcode.trim();
  118 + }
  119 +
  120 + public String getTurnunloading() {
  121 + return turnunloading;
  122 + }
  123 +
  124 + public void setTurnunloading(String turnunloading) {
  125 + this.turnunloading = turnunloading == null ? null : turnunloading.trim();
  126 + }
  127 +
  128 + public String getPno() {
  129 + return pno;
  130 + }
  131 +
  132 + public void setPno(String pno) {
  133 + this.pno = pno == null ? null : pno.trim();
  134 + }
  135 +
  136 + public String getStatus() {
  137 + return status;
  138 + }
  139 +
  140 + public void setStatus(String status) {
  141 + this.status = status == null ? null : status.trim();
  142 + }
  143 +
  144 + public String getTurntype() {
  145 + return turntype;
  146 + }
  147 +
  148 + public void setTurntype(String turntype) {
  149 + this.turntype = turntype == null ? null : turntype.trim();
  150 + }
  151 +
  152 + public String getGoodsname() {
  153 + return goodsname;
  154 + }
  155 +
  156 + public void setGoodsname(String goodsname) {
  157 + this.goodsname = goodsname == null ? null : goodsname.trim();
  158 + }
  159 +
  160 + public Boolean getIsdelete() {
  161 + return isdelete;
  162 + }
  163 +
  164 + public void setIsdelete(Boolean isdelete) {
  165 + this.isdelete = isdelete;
  166 + }
  167 +
  168 + public String getExt1() {
  169 + return ext1;
  170 + }
  171 +
  172 + public void setExt1(String ext1) {
  173 + this.ext1 = ext1 == null ? null : ext1.trim();
  174 + }
  175 +
  176 + public String getExt2() {
  177 + return ext2;
  178 + }
  179 +
  180 + public void setExt2(String ext2) {
  181 + this.ext2 = ext2 == null ? null : ext2.trim();
  182 + }
  183 +
  184 + public String getExt3() {
  185 + return ext3;
  186 + }
  187 +
  188 + public void setExt3(String ext3) {
  189 + this.ext3 = ext3 == null ? null : ext3.trim();
  190 + }
  191 +
  192 + public String getExt4() {
  193 + return ext4;
  194 + }
  195 +
  196 + public void setExt4(String ext4) {
  197 + this.ext4 = ext4 == null ? null : ext4.trim();
  198 + }
  199 +
  200 + public String getExt5() {
  201 + return ext5;
  202 + }
  203 +
  204 + public void setExt5(String ext5) {
  205 + this.ext5 = ext5 == null ? null : ext5.trim();
  206 + }
  207 +}