正在显示
9 个修改的文件
包含
514 行增加
和
17 行删除
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; | ||
5 | 4 | ||
6 | import java.math.BigDecimal; | 5 | import java.math.BigDecimal; |
7 | import java.util.Date; | 6 | import java.util.Date; |
8 | -@Data | 7 | + |
9 | public class AWB_AWBINFO { | 8 | public class AWB_AWBINFO { |
10 | private String billid; | 9 | private String billid; |
11 | 10 | ||
@@ -139,6 +138,7 @@ public class AWB_AWBINFO { | @@ -139,6 +138,7 @@ public class AWB_AWBINFO { | ||
139 | 138 | ||
140 | private String cargoowner; | 139 | private String cargoowner; |
141 | 140 | ||
141 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
142 | private Date chargetime; | 142 | private Date chargetime; |
143 | 143 | ||
144 | private String isinstruction; | 144 | private String isinstruction; |
@@ -194,6 +194,7 @@ public class AWB_AWBINFO { | @@ -194,6 +194,7 @@ public class AWB_AWBINFO { | ||
194 | 194 | ||
195 | private String crtagent; | 195 | private String crtagent; |
196 | 196 | ||
197 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
197 | private Date crtdate; | 198 | private Date crtdate; |
198 | 199 | ||
199 | private BigDecimal extraweight; | 200 | private BigDecimal extraweight; |
@@ -1258,4 +1259,36 @@ public class AWB_AWBINFO { | @@ -1258,4 +1259,36 @@ public class AWB_AWBINFO { | ||
1258 | public void setOptime(Date optime) { | 1259 | public void setOptime(Date optime) { |
1259 | this.optime = optime; | 1260 | this.optime = optime; |
1260 | } | 1261 | } |
1262 | + | ||
1263 | + public String getShpcomidpre() { | ||
1264 | + return shpcomidpre; | ||
1265 | + } | ||
1266 | + | ||
1267 | + public void setShpcomidpre(String shpcomidpre) { | ||
1268 | + this.shpcomidpre = shpcomidpre; | ||
1269 | + } | ||
1270 | + | ||
1271 | + public String getShpcomidpno() { | ||
1272 | + return shpcomidpno; | ||
1273 | + } | ||
1274 | + | ||
1275 | + public void setShpcomidpno(String shpcomidpno) { | ||
1276 | + this.shpcomidpno = shpcomidpno; | ||
1277 | + } | ||
1278 | + | ||
1279 | + public String getCnscomidpre() { | ||
1280 | + return cnscomidpre; | ||
1281 | + } | ||
1282 | + | ||
1283 | + public void setCnscomidpre(String cnscomidpre) { | ||
1284 | + this.cnscomidpre = cnscomidpre; | ||
1285 | + } | ||
1286 | + | ||
1287 | + public String getCnscomidno() { | ||
1288 | + return cnscomidno; | ||
1289 | + } | ||
1290 | + | ||
1291 | + public void setCnscomidno(String cnscomidno) { | ||
1292 | + this.cnscomidno = cnscomidno; | ||
1293 | + } | ||
1261 | } | 1294 | } |
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; | ||
5 | 4 | ||
6 | import java.math.BigDecimal; | 5 | import java.math.BigDecimal; |
7 | import java.util.Date; | 6 | import java.util.Date; |
8 | import java.util.List; | 7 | import java.util.List; |
9 | 8 | ||
10 | -@Data | ||
11 | public class NMMS_CUSTOM_MT1201 { | 9 | public class NMMS_CUSTOM_MT1201 { |
12 | private String uuid; | 10 | private String uuid; |
13 | 11 | ||
@@ -19,13 +17,14 @@ public class NMMS_CUSTOM_MT1201 { | @@ -19,13 +17,14 @@ public class NMMS_CUSTOM_MT1201 { | ||
19 | 17 | ||
20 | private String goodsname; | 18 | private String goodsname; |
21 | 19 | ||
20 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
22 | private Date actime; | 21 | private Date actime; |
23 | 22 | ||
24 | private String carrier; | 23 | private String carrier; |
25 | 24 | ||
26 | private String flightno; | 25 | private String flightno; |
27 | 26 | ||
28 | - @JsonFormat(pattern = "yyyy-MM-dd") | 27 | + @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") |
29 | private Date flightdate; | 28 | private Date flightdate; |
30 | 29 | ||
31 | private String originstation; | 30 | private String originstation; |
@@ -58,6 +57,195 @@ public class NMMS_CUSTOM_MT1201 { | @@ -58,6 +57,195 @@ public class NMMS_CUSTOM_MT1201 { | ||
58 | 57 | ||
59 | private List<NMMS_CUSTOM_MT1201> children; | 58 | private List<NMMS_CUSTOM_MT1201> children; |
60 | 59 | ||
60 | + public String getUuid() { | ||
61 | + return uuid; | ||
62 | + } | ||
61 | 63 | ||
64 | + public void setUuid(String uuid) { | ||
65 | + this.uuid = uuid; | ||
66 | + } | ||
62 | 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 | + | ||
244 | + public List<NMMS_CUSTOM_MT1201> getChildren() { | ||
245 | + return children; | ||
246 | + } | ||
247 | + | ||
248 | + public void setChildren(List<NMMS_CUSTOM_MT1201> children) { | ||
249 | + this.children = children; | ||
250 | + } | ||
63 | } | 251 | } |
1 | package com.sunyo.wlpt.base.model; | 1 | package com.sunyo.wlpt.base.model; |
2 | 2 | ||
3 | -import lombok.Data; | 3 | +import com.fasterxml.jackson.annotation.JsonFormat; |
4 | 4 | ||
5 | import java.math.BigDecimal; | 5 | import java.math.BigDecimal; |
6 | import java.util.Date; | 6 | import java.util.Date; |
7 | import java.util.List; | 7 | import java.util.List; |
8 | 8 | ||
9 | -@Data | ||
10 | public class NMMS_CUSTOM_MT2201 { | 9 | public class NMMS_CUSTOM_MT2201 { |
11 | private String uuid; | 10 | private String uuid; |
12 | 11 | ||
@@ -18,12 +17,14 @@ public class NMMS_CUSTOM_MT2201 { | @@ -18,12 +17,14 @@ public class NMMS_CUSTOM_MT2201 { | ||
18 | 17 | ||
19 | private String goodsname; | 18 | private String goodsname; |
20 | 19 | ||
20 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
21 | private Date actime; | 21 | private Date actime; |
22 | 22 | ||
23 | private String carrier; | 23 | private String carrier; |
24 | 24 | ||
25 | private String flightno; | 25 | private String flightno; |
26 | 26 | ||
27 | + @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") | ||
27 | private Date flightdate; | 28 | private Date flightdate; |
28 | 29 | ||
29 | private String originstation; | 30 | private String originstation; |
@@ -58,4 +59,203 @@ public class NMMS_CUSTOM_MT2201 { | @@ -58,4 +59,203 @@ public class NMMS_CUSTOM_MT2201 { | ||
58 | 59 | ||
59 | private List<NMMS_CUSTOM_MT2201> children; | 60 | private List<NMMS_CUSTOM_MT2201> children; |
60 | 61 | ||
62 | + public String getUuid() { | ||
63 | + return uuid; | ||
64 | + } | ||
65 | + | ||
66 | + public void setUuid(String uuid) { | ||
67 | + this.uuid = uuid; | ||
68 | + } | ||
69 | + | ||
70 | + public String getAwba() { | ||
71 | + return awba; | ||
72 | + } | ||
73 | + | ||
74 | + public void setAwba(String awba) { | ||
75 | + this.awba = awba; | ||
76 | + } | ||
77 | + | ||
78 | + public String getAwbh() { | ||
79 | + return awbh; | ||
80 | + } | ||
81 | + | ||
82 | + public void setAwbh(String awbh) { | ||
83 | + this.awbh = awbh; | ||
84 | + } | ||
85 | + | ||
86 | + public String getCustomcode() { | ||
87 | + return customcode; | ||
88 | + } | ||
89 | + | ||
90 | + public void setCustomcode(String customcode) { | ||
91 | + this.customcode = customcode; | ||
92 | + } | ||
93 | + | ||
94 | + public String getGoodsname() { | ||
95 | + return goodsname; | ||
96 | + } | ||
97 | + | ||
98 | + public void setGoodsname(String goodsname) { | ||
99 | + this.goodsname = goodsname; | ||
100 | + } | ||
101 | + | ||
102 | + public Date getActime() { | ||
103 | + return actime; | ||
104 | + } | ||
105 | + | ||
106 | + public void setActime(Date actime) { | ||
107 | + this.actime = actime; | ||
108 | + } | ||
109 | + | ||
110 | + public String getCarrier() { | ||
111 | + return carrier; | ||
112 | + } | ||
113 | + | ||
114 | + public void setCarrier(String carrier) { | ||
115 | + this.carrier = carrier; | ||
116 | + } | ||
117 | + | ||
118 | + public String getFlightno() { | ||
119 | + return flightno; | ||
120 | + } | ||
121 | + | ||
122 | + public void setFlightno(String flightno) { | ||
123 | + this.flightno = flightno; | ||
124 | + } | ||
125 | + | ||
126 | + public Date getFlightdate() { | ||
127 | + return flightdate; | ||
128 | + } | ||
129 | + | ||
130 | + public void setFlightdate(Date flightdate) { | ||
131 | + this.flightdate = flightdate; | ||
132 | + } | ||
133 | + | ||
134 | + public String getOriginstation() { | ||
135 | + return originstation; | ||
136 | + } | ||
137 | + | ||
138 | + public void setOriginstation(String originstation) { | ||
139 | + this.originstation = originstation; | ||
140 | + } | ||
141 | + | ||
142 | + public String getDestinationstation() { | ||
143 | + return destinationstation; | ||
144 | + } | ||
145 | + | ||
146 | + public void setDestinationstation(String destinationstation) { | ||
147 | + this.destinationstation = destinationstation; | ||
148 | + } | ||
149 | + | ||
150 | + public BigDecimal getPiece() { | ||
151 | + return piece; | ||
152 | + } | ||
153 | + | ||
154 | + public void setPiece(BigDecimal piece) { | ||
155 | + this.piece = piece; | ||
156 | + } | ||
157 | + | ||
158 | + public BigDecimal getWeight() { | ||
159 | + return weight; | ||
160 | + } | ||
161 | + | ||
162 | + public void setWeight(BigDecimal weight) { | ||
163 | + this.weight = weight; | ||
164 | + } | ||
165 | + | ||
166 | + public String getSplitcode() { | ||
167 | + return splitcode; | ||
168 | + } | ||
169 | + | ||
170 | + public void setSplitcode(String splitcode) { | ||
171 | + this.splitcode = splitcode; | ||
172 | + } | ||
173 | + | ||
174 | + public String getStatus() { | ||
175 | + return status; | ||
176 | + } | ||
177 | + | ||
178 | + public void setStatus(String status) { | ||
179 | + this.status = status; | ||
180 | + } | ||
181 | + | ||
182 | + public String getOffload() { | ||
183 | + return offload; | ||
184 | + } | ||
185 | + | ||
186 | + public void setOffload(String offload) { | ||
187 | + this.offload = offload; | ||
188 | + } | ||
189 | + | ||
190 | + public String getOffloaduuid() { | ||
191 | + return offloaduuid; | ||
192 | + } | ||
193 | + | ||
194 | + public void setOffloaduuid(String offloaduuid) { | ||
195 | + this.offloaduuid = offloaduuid; | ||
196 | + } | ||
197 | + | ||
198 | + public Boolean getIsdelete() { | ||
199 | + return isdelete; | ||
200 | + } | ||
201 | + | ||
202 | + public void setIsdelete(Boolean isdelete) { | ||
203 | + this.isdelete = isdelete; | ||
204 | + } | ||
205 | + | ||
206 | + public String getCustomtype() { | ||
207 | + return customtype; | ||
208 | + } | ||
209 | + | ||
210 | + public void setCustomtype(String customtype) { | ||
211 | + this.customtype = customtype; | ||
212 | + } | ||
213 | + | ||
214 | + public String getExt2() { | ||
215 | + return ext2; | ||
216 | + } | ||
217 | + | ||
218 | + public void setExt2(String ext2) { | ||
219 | + this.ext2 = ext2; | ||
220 | + } | ||
221 | + | ||
222 | + public String getExt3() { | ||
223 | + return ext3; | ||
224 | + } | ||
225 | + | ||
226 | + public void setExt3(String ext3) { | ||
227 | + this.ext3 = ext3; | ||
228 | + } | ||
229 | + | ||
230 | + public String getExt4() { | ||
231 | + return ext4; | ||
232 | + } | ||
233 | + | ||
234 | + public void setExt4(String ext4) { | ||
235 | + this.ext4 = ext4; | ||
236 | + } | ||
237 | + | ||
238 | + public String getExt5() { | ||
239 | + return ext5; | ||
240 | + } | ||
241 | + | ||
242 | + public void setExt5(String ext5) { | ||
243 | + this.ext5 = ext5; | ||
244 | + } | ||
245 | + | ||
246 | + public AWB_AWBINFO getAwbinfo() { | ||
247 | + return awbinfo; | ||
248 | + } | ||
249 | + | ||
250 | + public void setAwbinfo(AWB_AWBINFO awbinfo) { | ||
251 | + this.awbinfo = awbinfo; | ||
252 | + } | ||
253 | + | ||
254 | + public List<NMMS_CUSTOM_MT2201> getChildren() { | ||
255 | + return children; | ||
256 | + } | ||
257 | + | ||
258 | + public void setChildren(List<NMMS_CUSTOM_MT2201> children) { | ||
259 | + this.children = children; | ||
260 | + } | ||
61 | } | 261 | } |
1 | package com.sunyo.wlpt.base.model; | 1 | package com.sunyo.wlpt.base.model; |
2 | 2 | ||
3 | -import lombok.Data; | 3 | +import com.fasterxml.jackson.annotation.JsonFormat; |
4 | 4 | ||
5 | import java.util.Date; | 5 | import java.util.Date; |
6 | import java.util.List; | 6 | import java.util.List; |
7 | 7 | ||
8 | -@Data | ||
9 | public class NMMS_CUSTOM_MT3201 { | 8 | public class NMMS_CUSTOM_MT3201 { |
10 | private String uuid; | 9 | private String uuid; |
11 | 10 | ||
@@ -17,6 +16,7 @@ public class NMMS_CUSTOM_MT3201 { | @@ -17,6 +16,7 @@ public class NMMS_CUSTOM_MT3201 { | ||
17 | 16 | ||
18 | private String flightno; | 17 | private String flightno; |
19 | 18 | ||
19 | + @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") | ||
20 | private Date flightdate; | 20 | private Date flightdate; |
21 | 21 | ||
22 | private String originstation; | 22 | private String originstation; |
@@ -27,6 +27,7 @@ public class NMMS_CUSTOM_MT3201 { | @@ -27,6 +27,7 @@ public class NMMS_CUSTOM_MT3201 { | ||
27 | 27 | ||
28 | private Long weight; | 28 | private Long weight; |
29 | 29 | ||
30 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
30 | private Date arrivetime; | 31 | private Date arrivetime; |
31 | 32 | ||
32 | private String customcode; | 33 | private String customcode; |
@@ -49,7 +50,6 @@ public class NMMS_CUSTOM_MT3201 { | @@ -49,7 +50,6 @@ public class NMMS_CUSTOM_MT3201 { | ||
49 | 50 | ||
50 | private String ext5; | 51 | private String ext5; |
51 | 52 | ||
52 | - | ||
53 | private AWB_AWBINFO awbinfo; | 53 | private AWB_AWBINFO awbinfo; |
54 | 54 | ||
55 | private List<NMMS_CUSTOM_MT3201> children; | 55 | private List<NMMS_CUSTOM_MT3201> children; |
@@ -221,4 +221,20 @@ public class NMMS_CUSTOM_MT3201 { | @@ -221,4 +221,20 @@ public class NMMS_CUSTOM_MT3201 { | ||
221 | public void setExt5(String ext5) { | 221 | public void setExt5(String ext5) { |
222 | this.ext5 = ext5 == null ? null : ext5.trim(); | 222 | this.ext5 = ext5 == null ? null : ext5.trim(); |
223 | } | 223 | } |
224 | + | ||
225 | + public AWB_AWBINFO getAwbinfo() { | ||
226 | + return awbinfo; | ||
227 | + } | ||
228 | + | ||
229 | + public void setAwbinfo(AWB_AWBINFO awbinfo) { | ||
230 | + this.awbinfo = awbinfo; | ||
231 | + } | ||
232 | + | ||
233 | + public List<NMMS_CUSTOM_MT3201> getChildren() { | ||
234 | + return children; | ||
235 | + } | ||
236 | + | ||
237 | + public void setChildren(List<NMMS_CUSTOM_MT3201> children) { | ||
238 | + this.children = children; | ||
239 | + } | ||
224 | } | 240 | } |
1 | package com.sunyo.wlpt.base.model; | 1 | package com.sunyo.wlpt.base.model; |
2 | 2 | ||
3 | -import lombok.Data; | 3 | +import com.fasterxml.jackson.annotation.JsonFormat; |
4 | 4 | ||
5 | import java.util.Date; | 5 | import java.util.Date; |
6 | import java.util.List; | 6 | import java.util.List; |
7 | 7 | ||
8 | -@Data | ||
9 | public class NMMS_CUSTOM_MT4201 { | 8 | public class NMMS_CUSTOM_MT4201 { |
10 | private String uuid; | 9 | private String uuid; |
11 | 10 | ||
@@ -13,6 +12,7 @@ public class NMMS_CUSTOM_MT4201 { | @@ -13,6 +12,7 @@ public class NMMS_CUSTOM_MT4201 { | ||
13 | 12 | ||
14 | private String flightno; | 13 | private String flightno; |
15 | 14 | ||
15 | + @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") | ||
16 | private Date flightdate; | 16 | private Date flightdate; |
17 | 17 | ||
18 | private String originstation; | 18 | private String originstation; |
@@ -31,8 +31,10 @@ public class NMMS_CUSTOM_MT4201 { | @@ -31,8 +31,10 @@ public class NMMS_CUSTOM_MT4201 { | ||
31 | 31 | ||
32 | private String goodsname; | 32 | private String goodsname; |
33 | 33 | ||
34 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
34 | private Date actime; | 35 | private Date actime; |
35 | 36 | ||
37 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
36 | private Date loadingtime; | 38 | private Date loadingtime; |
37 | 39 | ||
38 | private String specialgoods; | 40 | private String specialgoods; |
@@ -230,4 +232,20 @@ public class NMMS_CUSTOM_MT4201 { | @@ -230,4 +232,20 @@ public class NMMS_CUSTOM_MT4201 { | ||
230 | public void setExt5(String ext5) { | 232 | public void setExt5(String ext5) { |
231 | this.ext5 = ext5 == null ? null : ext5.trim(); | 233 | this.ext5 = ext5 == null ? null : ext5.trim(); |
232 | } | 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 | + | ||
244 | + public List<NMMS_CUSTOM_MT4201> getChildren() { | ||
245 | + return children; | ||
246 | + } | ||
247 | + | ||
248 | + public void setChildren(List<NMMS_CUSTOM_MT4201> children) { | ||
249 | + this.children = children; | ||
250 | + } | ||
233 | } | 251 | } |
1 | package com.sunyo.wlpt.base.model; | 1 | package com.sunyo.wlpt.base.model; |
2 | 2 | ||
3 | -import lombok.Data; | 3 | +import com.fasterxml.jackson.annotation.JsonFormat; |
4 | 4 | ||
5 | import java.util.Date; | 5 | import java.util.Date; |
6 | import java.util.List; | 6 | import java.util.List; |
7 | 7 | ||
8 | -@Data | ||
9 | public class NMMS_CUSTOM_MT520X { | 8 | public class NMMS_CUSTOM_MT520X { |
10 | private String uuid; | 9 | private String uuid; |
11 | 10 | ||
@@ -17,6 +16,7 @@ public class NMMS_CUSTOM_MT520X { | @@ -17,6 +16,7 @@ public class NMMS_CUSTOM_MT520X { | ||
17 | 16 | ||
18 | private String flightno; | 17 | private String flightno; |
19 | 18 | ||
19 | + @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") | ||
20 | private Date flightdate; | 20 | private Date flightdate; |
21 | 21 | ||
22 | private String originstation; | 22 | private String originstation; |
@@ -27,14 +27,17 @@ public class NMMS_CUSTOM_MT520X { | @@ -27,14 +27,17 @@ public class NMMS_CUSTOM_MT520X { | ||
27 | 27 | ||
28 | private Long weight; | 28 | private Long weight; |
29 | 29 | ||
30 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
30 | private Date starttime; | 31 | private Date starttime; |
31 | 32 | ||
33 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
32 | private Date endtime; | 34 | private Date endtime; |
33 | 35 | ||
34 | private String customcode; | 36 | private String customcode; |
35 | 37 | ||
36 | private String goodsname; | 38 | private String goodsname; |
37 | 39 | ||
40 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
38 | private Date actime; | 41 | private Date actime; |
39 | 42 | ||
40 | private String rcfdep; | 43 | private String rcfdep; |
@@ -240,4 +243,20 @@ public class NMMS_CUSTOM_MT520X { | @@ -240,4 +243,20 @@ public class NMMS_CUSTOM_MT520X { | ||
240 | public void setExt5(String ext5) { | 243 | public void setExt5(String ext5) { |
241 | this.ext5 = ext5 == null ? null : ext5.trim(); | 244 | this.ext5 = ext5 == null ? null : ext5.trim(); |
242 | } | 245 | } |
246 | + | ||
247 | + public AWB_AWBINFO getAwbinfo() { | ||
248 | + return awbinfo; | ||
249 | + } | ||
250 | + | ||
251 | + public void setAwbinfo(AWB_AWBINFO awbinfo) { | ||
252 | + this.awbinfo = awbinfo; | ||
253 | + } | ||
254 | + | ||
255 | + public List<NMMS_CUSTOM_MT520X> getChildren() { | ||
256 | + return children; | ||
257 | + } | ||
258 | + | ||
259 | + public void setChildren(List<NMMS_CUSTOM_MT520X> children) { | ||
260 | + this.children = children; | ||
261 | + } | ||
243 | } | 262 | } |
1 | package com.sunyo.wlpt.base.model; | 1 | package com.sunyo.wlpt.base.model; |
2 | 2 | ||
3 | -import lombok.Data; | ||
4 | - | ||
5 | import java.util.List; | 3 | import java.util.List; |
6 | 4 | ||
7 | -@Data | ||
8 | public class NMMS_CUSTOM_MT8205 { | 5 | public class NMMS_CUSTOM_MT8205 { |
9 | private String uuid; | 6 | private String uuid; |
10 | 7 | ||
@@ -180,4 +177,20 @@ public class NMMS_CUSTOM_MT8205 { | @@ -180,4 +177,20 @@ public class NMMS_CUSTOM_MT8205 { | ||
180 | public void setExt5(String ext5) { | 177 | public void setExt5(String ext5) { |
181 | this.ext5 = ext5 == null ? null : ext5.trim(); | 178 | this.ext5 = ext5 == null ? null : ext5.trim(); |
182 | } | 179 | } |
180 | + | ||
181 | + public AWB_AWBINFO getAwbinfo() { | ||
182 | + return awbinfo; | ||
183 | + } | ||
184 | + | ||
185 | + public void setAwbinfo(AWB_AWBINFO awbinfo) { | ||
186 | + this.awbinfo = awbinfo; | ||
187 | + } | ||
188 | + | ||
189 | + public List<NMMS_CUSTOM_MT8205> getChildren() { | ||
190 | + return children; | ||
191 | + } | ||
192 | + | ||
193 | + public void setChildren(List<NMMS_CUSTOM_MT8205> children) { | ||
194 | + this.children = children; | ||
195 | + } | ||
183 | } | 196 | } |
1 | package com.sunyo.wlpt.base.model; | 1 | package com.sunyo.wlpt.base.model; |
2 | 2 | ||
3 | +import com.fasterxml.jackson.annotation.JsonFormat; | ||
4 | + | ||
3 | import java.util.Date; | 5 | import java.util.Date; |
4 | 6 | ||
5 | public class NMMS_CUSTOM_RESPONSE { | 7 | public class NMMS_CUSTOM_RESPONSE { |
6 | private String id; | 8 | private String id; |
7 | 9 | ||
10 | + @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") | ||
8 | private Date flightdate; | 11 | private Date flightdate; |
9 | 12 | ||
10 | private String flightno; | 13 | private String flightno; |
@@ -17,6 +20,7 @@ public class NMMS_CUSTOM_RESPONSE { | @@ -17,6 +20,7 @@ public class NMMS_CUSTOM_RESPONSE { | ||
17 | 20 | ||
18 | private String bustype; | 21 | private String bustype; |
19 | 22 | ||
23 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
20 | private Date busdate; | 24 | private Date busdate; |
21 | 25 | ||
22 | private Long busweight; | 26 | private Long busweight; |
@@ -35,8 +39,10 @@ public class NMMS_CUSTOM_RESPONSE { | @@ -35,8 +39,10 @@ public class NMMS_CUSTOM_RESPONSE { | ||
35 | 39 | ||
36 | private String cusfunctioncode; | 40 | private String cusfunctioncode; |
37 | 41 | ||
42 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
38 | private Date cusresrcvtime; | 43 | private Date cusresrcvtime; |
39 | 44 | ||
45 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
40 | private Date cusressendtime; | 46 | private Date cusressendtime; |
41 | 47 | ||
42 | private String cusrescode; | 48 | private String cusrescode; |
1 | package com.sunyo.wlpt.base.model; | 1 | package com.sunyo.wlpt.base.model; |
2 | 2 | ||
3 | +import com.fasterxml.jackson.annotation.JsonFormat; | ||
4 | + | ||
3 | import java.util.Date; | 5 | import java.util.Date; |
4 | 6 | ||
5 | public class NMMS_FFM_INFO { | 7 | public class NMMS_FFM_INFO { |
6 | private String autoid; | 8 | private String autoid; |
7 | 9 | ||
10 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
8 | private Date createdate; | 11 | private Date createdate; |
9 | 12 | ||
10 | private String flightno; | 13 | private String flightno; |
11 | 14 | ||
15 | + @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") | ||
12 | private Date flightdate; | 16 | private Date flightdate; |
13 | 17 | ||
14 | private String waybillnomaster; | 18 | private String waybillnomaster; |
-
请 注册 或 登录 后发表评论