作者 朱兆平

Merge branch 'master' of 118.31.66.166:WLPT_CLOUD/Base_Model

 Conflicts:
	.gitignore
	src/main/java/com/sunyo/wlpt/base/model/NMMS_CUSTOM_MT520X.java
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 com.fasterxml.jackson.annotation.JsonFormat;
  4 +import lombok.Data;
4 5
5 import java.math.BigDecimal; 6 import java.math.BigDecimal;
6 import java.util.Date; 7 import java.util.Date;
7 import java.util.List; 8 import java.util.List;
8 9
  10 +@Data
9 public class NMMS_CUSTOM_MT1201 { 11 public class NMMS_CUSTOM_MT1201 {
  12 + private String carrierno;
  13 + private String rcfdep;
  14 + private String segment;
10 private String uuid; 15 private String uuid;
11 - 16 + private String waybill;
12 private String awba; 17 private String awba;
13 18
14 private String awbh; 19 private String awbh;
@@ -17,14 +22,12 @@ public class NMMS_CUSTOM_MT1201 { @@ -17,14 +22,12 @@ public class NMMS_CUSTOM_MT1201 {
17 22
18 private String goodsname; 23 private String goodsname;
19 24
20 - @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")  
21 private Date actime; 25 private Date actime;
22 26
23 private String carrier; 27 private String carrier;
24 28
25 private String flightno; 29 private String flightno;
26 -  
27 - @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") 30 + @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
28 private Date flightdate; 31 private Date flightdate;
29 32
30 private String originstation; 33 private String originstation;
@@ -33,6 +36,10 @@ public class NMMS_CUSTOM_MT1201 { @@ -33,6 +36,10 @@ public class NMMS_CUSTOM_MT1201 {
33 36
34 private BigDecimal piece; 37 private BigDecimal piece;
35 38
  39 + private BigDecimal pcs;
  40 +
  41 + private BigDecimal wei;
  42 +
36 private BigDecimal weight; 43 private BigDecimal weight;
37 44
38 private String splitcode; 45 private String splitcode;
@@ -57,195 +64,6 @@ public class NMMS_CUSTOM_MT1201 { @@ -57,195 +64,6 @@ public class NMMS_CUSTOM_MT1201 {
57 64
58 private List<NMMS_CUSTOM_MT1201> children; 65 private List<NMMS_CUSTOM_MT1201> children;
59 66
60 - public String getUuid() {  
61 - return uuid;  
62 - }  
63 -  
64 - public void setUuid(String uuid) {  
65 - this.uuid = uuid;  
66 - }  
67 -  
68 - public String getAwba() {  
69 - return awba;  
70 - }  
71 -  
72 - public void setAwba(String awba) {  
73 - this.awba = awba;  
74 - }  
75 -  
76 - public String getAwbh() {  
77 - return awbh;  
78 - }  
79 -  
80 - public void setAwbh(String awbh) {  
81 - this.awbh = awbh;  
82 - }  
83 -  
84 - public String getCustomcode() {  
85 - return customcode;  
86 - }  
87 -  
88 - public void setCustomcode(String customcode) {  
89 - this.customcode = customcode;  
90 - }  
91 -  
92 - public String getGoodsname() {  
93 - return goodsname;  
94 - }  
95 -  
96 - public void setGoodsname(String goodsname) {  
97 - this.goodsname = goodsname;  
98 - }  
99 -  
100 - public Date getActime() {  
101 - return actime;  
102 - }  
103 -  
104 - public void setActime(Date actime) {  
105 - this.actime = actime;  
106 - }  
107 -  
108 - public String getCarrier() {  
109 - return carrier;  
110 - }  
111 -  
112 - public void setCarrier(String carrier) {  
113 - this.carrier = carrier;  
114 - }  
115 -  
116 - public String getFlightno() {  
117 - return flightno;  
118 - }  
119 -  
120 - public void setFlightno(String flightno) {  
121 - this.flightno = flightno;  
122 - }  
123 -  
124 - public Date getFlightdate() {  
125 - return flightdate;  
126 - }  
127 -  
128 - public void setFlightdate(Date flightdate) {  
129 - this.flightdate = flightdate;  
130 - }  
131 -  
132 - public String getOriginstation() {  
133 - return originstation;  
134 - }  
135 -  
136 - public void setOriginstation(String originstation) {  
137 - this.originstation = originstation;  
138 - }  
139 -  
140 - public String getDestinationstation() {  
141 - return destinationstation;  
142 - }  
143 -  
144 - public void setDestinationstation(String destinationstation) {  
145 - this.destinationstation = destinationstation;  
146 - }  
147 -  
148 - public BigDecimal getPiece() {  
149 - return piece;  
150 - }  
151 -  
152 - public void setPiece(BigDecimal piece) {  
153 - this.piece = piece;  
154 - }  
155 -  
156 - public BigDecimal getWeight() {  
157 - return weight;  
158 - }  
159 -  
160 - public void setWeight(BigDecimal weight) {  
161 - this.weight = weight;  
162 - }  
163 -  
164 - public String getSplitcode() {  
165 - return splitcode;  
166 - }  
167 -  
168 - public void setSplitcode(String splitcode) {  
169 - this.splitcode = splitcode;  
170 - }  
171 -  
172 - public String getStatus() {  
173 - return status;  
174 - }  
175 -  
176 - public void setStatus(String status) {  
177 - this.status = status;  
178 - }  
179 -  
180 - public Boolean getIsdelete() {  
181 - return isdelete;  
182 - }  
183 -  
184 - public void setIsdelete(Boolean isdelete) {  
185 - this.isdelete = isdelete;  
186 - }  
187 -  
188 - public String getUldtype() {  
189 - return uldtype;  
190 - }  
191 -  
192 - public void setUldtype(String uldtype) {  
193 - this.uldtype = uldtype;  
194 - }  
195 -  
196 - public String getUldno() {  
197 - return uldno;  
198 - }  
199 -  
200 - public void setUldno(String uldno) {  
201 - this.uldno = uldno;  
202 - }  
203 -  
204 - public String getPlaneno() {  
205 - return planeno;  
206 - }  
207 -  
208 - public void setPlaneno(String planeno) {  
209 - this.planeno = planeno;  
210 - }  
211 -  
212 - public String getOpeuserid() {  
213 - return opeuserid;  
214 - }  
215 -  
216 - public void setOpeuserid(String opeuserid) {  
217 - this.opeuserid = opeuserid;  
218 - }  
219 -  
220 - public String getExt5() {  
221 - return ext5;  
222 - }  
223 -  
224 - public void setExt5(String ext5) {  
225 - this.ext5 = ext5;  
226 - }  
227 -  
228 - public String getCustomText() {  
229 - return customText;  
230 - }  
231 -  
232 - public void setCustomText(String customText) {  
233 - this.customText = customText;  
234 - }  
235 -  
236 - public AWB_AWBINFO getAwbinfo() {  
237 - return awbinfo;  
238 - }  
239 -  
240 - public void setAwbinfo(AWB_AWBINFO awbinfo) {  
241 - this.awbinfo = awbinfo;  
242 - }  
243 67
244 - public List<NMMS_CUSTOM_MT1201> getChildren() {  
245 - return children;  
246 - }  
247 68
248 - public void setChildren(List<NMMS_CUSTOM_MT1201> children) {  
249 - this.children = children;  
250 - }  
251 } 69 }
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 com.fasterxml.jackson.annotation.JsonFormat;
  4 +import lombok.Data;
4 5
5 import java.util.Date; 6 import java.util.Date;
6 import java.util.List; 7 import java.util.List;
7 8
  9 +@Data
8 public class NMMS_CUSTOM_MT520X { 10 public class NMMS_CUSTOM_MT520X {
  11 + private String carrierno;
  12 + private String segment;
9 private String uuid; 13 private String uuid;
10 - 14 + private String waybill;
  15 + private String customText;
11 private String awba; 16 private String awba;
12 17
13 private String awbh; 18 private String awbh;
@@ -15,8 +20,7 @@ public class NMMS_CUSTOM_MT520X { @@ -15,8 +20,7 @@ public class NMMS_CUSTOM_MT520X {
15 private String carrier; 20 private String carrier;
16 21
17 private String flightno; 22 private String flightno;
18 -  
19 - @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") 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,27 +30,21 @@ public class NMMS_CUSTOM_MT520X { @@ -26,27 +30,21 @@ public class NMMS_CUSTOM_MT520X {
26 private Integer piece; 30 private Integer piece;
27 31
28 private Long weight; 32 private Long weight;
29 -  
30 - @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") 33 + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
31 private Date starttime; 34 private Date starttime;
32 35
33 - @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")  
34 private Date endtime; 36 private Date endtime;
35 37
36 private String customcode; 38 private String customcode;
37 39
38 private String goodsname; 40 private String goodsname;
39 41
40 - @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")  
41 private Date actime; 42 private Date actime;
42 43
43 private String rcfdep; 44 private String rcfdep;
44 45
45 private String status; 46 private String status;
46 47
47 - //去掉  
48 -// private String messageType;  
49 -  
50 private Boolean isdelete; 48 private Boolean isdelete;
51 49
52 private String ext1; 50 private String ext1;
@@ -246,20 +244,4 @@ public class NMMS_CUSTOM_MT520X { @@ -246,20 +244,4 @@ public class NMMS_CUSTOM_MT520X {
246 public void setExt5(String ext5) { 244 public void setExt5(String ext5) {
247 this.ext5 = ext5 == null ? null : ext5.trim(); 245 this.ext5 = ext5 == null ? null : ext5.trim();
248 } 246 }
249 -  
250 - public AWB_AWBINFO getAwbinfo() {  
251 - return awbinfo;  
252 - }  
253 -  
254 - public void setAwbinfo(AWB_AWBINFO awbinfo) {  
255 - this.awbinfo = awbinfo;  
256 - }  
257 -  
258 - public List<NMMS_CUSTOM_MT520X> getChildren() {  
259 - return children;  
260 - }  
261 -  
262 - public void setChildren(List<NMMS_CUSTOM_MT520X> children) {  
263 - this.children = children;  
264 - }  
265 } 247 }
  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 +}