正在显示
8 个修改的文件
包含
334 行增加
和
12 行删除
.gitignore
0 → 100644
1 | +# Created by .ignore support plugin (hsz.mobi) |
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 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,12 +27,14 @@ public class NMMS_CUSTOM_MT3201 { | @@ -27,12 +27,14 @@ 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; |
33 | 34 | ||
34 | private String goodsname; | 35 | private String goodsname; |
35 | 36 | ||
37 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
36 | private Date actime; | 38 | private Date actime; |
37 | 39 | ||
38 | private String status; | 40 | private String status; |
@@ -49,7 +51,6 @@ public class NMMS_CUSTOM_MT3201 { | @@ -49,7 +51,6 @@ public class NMMS_CUSTOM_MT3201 { | ||
49 | 51 | ||
50 | private String ext5; | 52 | private String ext5; |
51 | 53 | ||
52 | - | ||
53 | private AWB_AWBINFO awbinfo; | 54 | private AWB_AWBINFO awbinfo; |
54 | 55 | ||
55 | private List<NMMS_CUSTOM_MT3201> children; | 56 | private List<NMMS_CUSTOM_MT3201> children; |
@@ -221,4 +222,20 @@ public class NMMS_CUSTOM_MT3201 { | @@ -221,4 +222,20 @@ public class NMMS_CUSTOM_MT3201 { | ||
221 | public void setExt5(String ext5) { | 222 | public void setExt5(String ext5) { |
222 | this.ext5 = ext5 == null ? null : ext5.trim(); | 223 | this.ext5 = ext5 == null ? null : ext5.trim(); |
223 | } | 224 | } |
225 | + | ||
226 | + public AWB_AWBINFO getAwbinfo() { | ||
227 | + return awbinfo; | ||
228 | + } | ||
229 | + | ||
230 | + public void setAwbinfo(AWB_AWBINFO awbinfo) { | ||
231 | + this.awbinfo = awbinfo; | ||
232 | + } | ||
233 | + | ||
234 | + public List<NMMS_CUSTOM_MT3201> getChildren() { | ||
235 | + return children; | ||
236 | + } | ||
237 | + | ||
238 | + public void setChildren(List<NMMS_CUSTOM_MT3201> children) { | ||
239 | + this.children = children; | ||
240 | + } | ||
224 | } | 241 | } |
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; | ||
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; |
@@ -49,6 +55,12 @@ public class NMMS_CUSTOM_RESPONSE { | @@ -49,6 +55,12 @@ public class NMMS_CUSTOM_RESPONSE { | ||
49 | 55 | ||
50 | private String cusrestext; | 56 | private String cusrestext; |
51 | 57 | ||
58 | + private String operreason; | ||
59 | + | ||
60 | + private String operperson; | ||
61 | + | ||
62 | + private String opertel; | ||
63 | + | ||
52 | public String getId() { | 64 | public String getId() { |
53 | return id; | 65 | return id; |
54 | } | 66 | } |
@@ -232,4 +244,28 @@ public class NMMS_CUSTOM_RESPONSE { | @@ -232,4 +244,28 @@ public class NMMS_CUSTOM_RESPONSE { | ||
232 | public void setCusrestext(String cusrestext) { | 244 | public void setCusrestext(String cusrestext) { |
233 | this.cusrestext = cusrestext == null ? null : cusrestext.trim(); | 245 | this.cusrestext = cusrestext == null ? null : cusrestext.trim(); |
234 | } | 246 | } |
247 | + | ||
248 | + public String getOperreason() { | ||
249 | + return operreason; | ||
250 | + } | ||
251 | + | ||
252 | + public void setOperreason(String operreason) { | ||
253 | + this.operreason = operreason; | ||
254 | + } | ||
255 | + | ||
256 | + public String getOperperson() { | ||
257 | + return operperson; | ||
258 | + } | ||
259 | + | ||
260 | + public void setOperperson(String operperson) { | ||
261 | + this.operperson = operperson; | ||
262 | + } | ||
263 | + | ||
264 | + public String getOpertel() { | ||
265 | + return opertel; | ||
266 | + } | ||
267 | + | ||
268 | + public void setOpertel(String opertel) { | ||
269 | + this.opertel = opertel; | ||
270 | + } | ||
235 | } | 271 | } |
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; |
-
请 注册 或 登录 后发表评论