Merge branch 'master' of 118.31.66.166:WLPT_CLOUD/Base_Model
正在显示
11 个修改的文件
包含
321 行增加
和
46 行删除
@@ -44,4 +44,17 @@ | @@ -44,4 +44,17 @@ | ||
44 | </plugin> | 44 | </plugin> |
45 | </plugins> | 45 | </plugins> |
46 | </build> | 46 | </build> |
47 | + <dependencies> | ||
48 | + <dependency> | ||
49 | + <groupId>com.fasterxml.jackson.core</groupId> | ||
50 | + <artifactId>jackson-annotations</artifactId> | ||
51 | + <version>2.9.5</version> | ||
52 | + <scope>compile</scope> | ||
53 | + </dependency> | ||
54 | + <dependency> | ||
55 | + <groupId>org.projectlombok</groupId> | ||
56 | + <artifactId>lombok</artifactId> | ||
57 | + <version>1.18.8</version> | ||
58 | + </dependency> | ||
59 | + </dependencies> | ||
47 | </project> | 60 | </project> |
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.math.BigDecimal; | 5 | import java.math.BigDecimal; |
4 | import java.util.Date; | 6 | import java.util.Date; |
5 | 7 | ||
@@ -136,6 +138,7 @@ public class AWB_AWBINFO { | @@ -136,6 +138,7 @@ public class AWB_AWBINFO { | ||
136 | 138 | ||
137 | private String cargoowner; | 139 | private String cargoowner; |
138 | 140 | ||
141 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
139 | private Date chargetime; | 142 | private Date chargetime; |
140 | 143 | ||
141 | private String isinstruction; | 144 | private String isinstruction; |
@@ -178,6 +181,7 @@ public class AWB_AWBINFO { | @@ -178,6 +181,7 @@ public class AWB_AWBINFO { | ||
178 | 181 | ||
179 | private BigDecimal originalvol; | 182 | private BigDecimal originalvol; |
180 | 183 | ||
184 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
181 | private Date crtopetime; | 185 | private Date crtopetime; |
182 | 186 | ||
183 | private String dlvpriority; | 187 | private String dlvpriority; |
@@ -190,6 +194,7 @@ public class AWB_AWBINFO { | @@ -190,6 +194,7 @@ public class AWB_AWBINFO { | ||
190 | 194 | ||
191 | private String crtagent; | 195 | private String crtagent; |
192 | 196 | ||
197 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
193 | private Date crtdate; | 198 | private Date crtdate; |
194 | 199 | ||
195 | private BigDecimal extraweight; | 200 | private BigDecimal extraweight; |
@@ -218,10 +223,12 @@ public class AWB_AWBINFO { | @@ -218,10 +223,12 @@ public class AWB_AWBINFO { | ||
218 | 223 | ||
219 | private String endoper; | 224 | private String endoper; |
220 | 225 | ||
226 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
221 | private Date endopetime; | 227 | private Date endopetime; |
222 | 228 | ||
223 | private String confirmoper; | 229 | private String confirmoper; |
224 | 230 | ||
231 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
225 | private Date confirmopetime; | 232 | private Date confirmopetime; |
226 | 233 | ||
227 | private String csgcustomer; | 234 | private String csgcustomer; |
@@ -250,8 +257,17 @@ public class AWB_AWBINFO { | @@ -250,8 +257,17 @@ public class AWB_AWBINFO { | ||
250 | 257 | ||
251 | private Boolean isdelete; | 258 | private Boolean isdelete; |
252 | 259 | ||
260 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
253 | private Date optime; | 261 | private Date optime; |
254 | 262 | ||
263 | + private String shpcomidpre; | ||
264 | + | ||
265 | + private String shpcomidpno; | ||
266 | + | ||
267 | + private String cnscomidpre; | ||
268 | + | ||
269 | + private String cnscomidno; | ||
270 | + | ||
255 | public String getBillid() { | 271 | public String getBillid() { |
256 | return billid; | 272 | return billid; |
257 | } | 273 | } |
@@ -1243,4 +1259,36 @@ public class AWB_AWBINFO { | @@ -1243,4 +1259,36 @@ public class AWB_AWBINFO { | ||
1243 | public void setOptime(Date optime) { | 1259 | public void setOptime(Date optime) { |
1244 | this.optime = optime; | 1260 | this.optime = optime; |
1245 | } | 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 | + } | ||
1246 | } | 1294 | } |
1 | package com.sunyo.wlpt.base.model; | 1 | package com.sunyo.wlpt.base.model; |
2 | 2 | ||
3 | +import com.fasterxml.jackson.annotation.JsonFormat; | ||
4 | + | ||
5 | +import java.math.BigDecimal; | ||
3 | import java.util.Date; | 6 | import java.util.Date; |
7 | +import java.util.List; | ||
4 | 8 | ||
5 | public class NMMS_CUSTOM_MT1201 { | 9 | public class NMMS_CUSTOM_MT1201 { |
6 | private String uuid; | 10 | private String uuid; |
@@ -13,21 +17,23 @@ public class NMMS_CUSTOM_MT1201 { | @@ -13,21 +17,23 @@ public class NMMS_CUSTOM_MT1201 { | ||
13 | 17 | ||
14 | private String goodsname; | 18 | private String goodsname; |
15 | 19 | ||
20 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
16 | private Date actime; | 21 | private Date actime; |
17 | 22 | ||
18 | private String carrier; | 23 | private String carrier; |
19 | 24 | ||
20 | private String flightno; | 25 | private String flightno; |
21 | 26 | ||
27 | + @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") | ||
22 | private Date flightdate; | 28 | private Date flightdate; |
23 | 29 | ||
24 | private String originstation; | 30 | private String originstation; |
25 | 31 | ||
26 | private String destinationstation; | 32 | private String destinationstation; |
27 | 33 | ||
28 | - private Integer piece; | 34 | + private BigDecimal piece; |
29 | 35 | ||
30 | - private Long weight; | 36 | + private BigDecimal weight; |
31 | 37 | ||
32 | private String splitcode; | 38 | private String splitcode; |
33 | 39 | ||
@@ -45,12 +51,18 @@ public class NMMS_CUSTOM_MT1201 { | @@ -45,12 +51,18 @@ public class NMMS_CUSTOM_MT1201 { | ||
45 | 51 | ||
46 | private String ext5; | 52 | private String ext5; |
47 | 53 | ||
54 | + private String customText; | ||
55 | + | ||
56 | + private AWB_AWBINFO awbinfo; | ||
57 | + | ||
58 | + private List<NMMS_CUSTOM_MT1201> children; | ||
59 | + | ||
48 | public String getUuid() { | 60 | public String getUuid() { |
49 | return uuid; | 61 | return uuid; |
50 | } | 62 | } |
51 | 63 | ||
52 | public void setUuid(String uuid) { | 64 | public void setUuid(String uuid) { |
53 | - this.uuid = uuid == null ? null : uuid.trim(); | 65 | + this.uuid = uuid; |
54 | } | 66 | } |
55 | 67 | ||
56 | public String getAwba() { | 68 | public String getAwba() { |
@@ -58,7 +70,7 @@ public class NMMS_CUSTOM_MT1201 { | @@ -58,7 +70,7 @@ public class NMMS_CUSTOM_MT1201 { | ||
58 | } | 70 | } |
59 | 71 | ||
60 | public void setAwba(String awba) { | 72 | public void setAwba(String awba) { |
61 | - this.awba = awba == null ? null : awba.trim(); | 73 | + this.awba = awba; |
62 | } | 74 | } |
63 | 75 | ||
64 | public String getAwbh() { | 76 | public String getAwbh() { |
@@ -66,7 +78,7 @@ public class NMMS_CUSTOM_MT1201 { | @@ -66,7 +78,7 @@ public class NMMS_CUSTOM_MT1201 { | ||
66 | } | 78 | } |
67 | 79 | ||
68 | public void setAwbh(String awbh) { | 80 | public void setAwbh(String awbh) { |
69 | - this.awbh = awbh == null ? null : awbh.trim(); | 81 | + this.awbh = awbh; |
70 | } | 82 | } |
71 | 83 | ||
72 | public String getCustomcode() { | 84 | public String getCustomcode() { |
@@ -74,7 +86,7 @@ public class NMMS_CUSTOM_MT1201 { | @@ -74,7 +86,7 @@ public class NMMS_CUSTOM_MT1201 { | ||
74 | } | 86 | } |
75 | 87 | ||
76 | public void setCustomcode(String customcode) { | 88 | public void setCustomcode(String customcode) { |
77 | - this.customcode = customcode == null ? null : customcode.trim(); | 89 | + this.customcode = customcode; |
78 | } | 90 | } |
79 | 91 | ||
80 | public String getGoodsname() { | 92 | public String getGoodsname() { |
@@ -82,7 +94,7 @@ public class NMMS_CUSTOM_MT1201 { | @@ -82,7 +94,7 @@ public class NMMS_CUSTOM_MT1201 { | ||
82 | } | 94 | } |
83 | 95 | ||
84 | public void setGoodsname(String goodsname) { | 96 | public void setGoodsname(String goodsname) { |
85 | - this.goodsname = goodsname == null ? null : goodsname.trim(); | 97 | + this.goodsname = goodsname; |
86 | } | 98 | } |
87 | 99 | ||
88 | public Date getActime() { | 100 | public Date getActime() { |
@@ -98,7 +110,7 @@ public class NMMS_CUSTOM_MT1201 { | @@ -98,7 +110,7 @@ public class NMMS_CUSTOM_MT1201 { | ||
98 | } | 110 | } |
99 | 111 | ||
100 | public void setCarrier(String carrier) { | 112 | public void setCarrier(String carrier) { |
101 | - this.carrier = carrier == null ? null : carrier.trim(); | 113 | + this.carrier = carrier; |
102 | } | 114 | } |
103 | 115 | ||
104 | public String getFlightno() { | 116 | public String getFlightno() { |
@@ -106,7 +118,7 @@ public class NMMS_CUSTOM_MT1201 { | @@ -106,7 +118,7 @@ public class NMMS_CUSTOM_MT1201 { | ||
106 | } | 118 | } |
107 | 119 | ||
108 | public void setFlightno(String flightno) { | 120 | public void setFlightno(String flightno) { |
109 | - this.flightno = flightno == null ? null : flightno.trim(); | 121 | + this.flightno = flightno; |
110 | } | 122 | } |
111 | 123 | ||
112 | public Date getFlightdate() { | 124 | public Date getFlightdate() { |
@@ -122,7 +134,7 @@ public class NMMS_CUSTOM_MT1201 { | @@ -122,7 +134,7 @@ public class NMMS_CUSTOM_MT1201 { | ||
122 | } | 134 | } |
123 | 135 | ||
124 | public void setOriginstation(String originstation) { | 136 | public void setOriginstation(String originstation) { |
125 | - this.originstation = originstation == null ? null : originstation.trim(); | 137 | + this.originstation = originstation; |
126 | } | 138 | } |
127 | 139 | ||
128 | public String getDestinationstation() { | 140 | public String getDestinationstation() { |
@@ -130,22 +142,22 @@ public class NMMS_CUSTOM_MT1201 { | @@ -130,22 +142,22 @@ public class NMMS_CUSTOM_MT1201 { | ||
130 | } | 142 | } |
131 | 143 | ||
132 | public void setDestinationstation(String destinationstation) { | 144 | public void setDestinationstation(String destinationstation) { |
133 | - this.destinationstation = destinationstation == null ? null : destinationstation.trim(); | 145 | + this.destinationstation = destinationstation; |
134 | } | 146 | } |
135 | 147 | ||
136 | - public Integer getPiece() { | 148 | + public BigDecimal getPiece() { |
137 | return piece; | 149 | return piece; |
138 | } | 150 | } |
139 | 151 | ||
140 | - public void setPiece(Integer piece) { | 152 | + public void setPiece(BigDecimal piece) { |
141 | this.piece = piece; | 153 | this.piece = piece; |
142 | } | 154 | } |
143 | 155 | ||
144 | - public Long getWeight() { | 156 | + public BigDecimal getWeight() { |
145 | return weight; | 157 | return weight; |
146 | } | 158 | } |
147 | 159 | ||
148 | - public void setWeight(Long weight) { | 160 | + public void setWeight(BigDecimal weight) { |
149 | this.weight = weight; | 161 | this.weight = weight; |
150 | } | 162 | } |
151 | 163 | ||
@@ -154,7 +166,7 @@ public class NMMS_CUSTOM_MT1201 { | @@ -154,7 +166,7 @@ public class NMMS_CUSTOM_MT1201 { | ||
154 | } | 166 | } |
155 | 167 | ||
156 | public void setSplitcode(String splitcode) { | 168 | public void setSplitcode(String splitcode) { |
157 | - this.splitcode = splitcode == null ? null : splitcode.trim(); | 169 | + this.splitcode = splitcode; |
158 | } | 170 | } |
159 | 171 | ||
160 | public String getStatus() { | 172 | public String getStatus() { |
@@ -162,7 +174,7 @@ public class NMMS_CUSTOM_MT1201 { | @@ -162,7 +174,7 @@ public class NMMS_CUSTOM_MT1201 { | ||
162 | } | 174 | } |
163 | 175 | ||
164 | public void setStatus(String status) { | 176 | public void setStatus(String status) { |
165 | - this.status = status == null ? null : status.trim(); | 177 | + this.status = status; |
166 | } | 178 | } |
167 | 179 | ||
168 | public Boolean getIsdelete() { | 180 | public Boolean getIsdelete() { |
@@ -178,7 +190,7 @@ public class NMMS_CUSTOM_MT1201 { | @@ -178,7 +190,7 @@ public class NMMS_CUSTOM_MT1201 { | ||
178 | } | 190 | } |
179 | 191 | ||
180 | public void setUldtype(String uldtype) { | 192 | public void setUldtype(String uldtype) { |
181 | - this.uldtype = uldtype == null ? null : uldtype.trim(); | 193 | + this.uldtype = uldtype; |
182 | } | 194 | } |
183 | 195 | ||
184 | public String getUldno() { | 196 | public String getUldno() { |
@@ -186,7 +198,7 @@ public class NMMS_CUSTOM_MT1201 { | @@ -186,7 +198,7 @@ public class NMMS_CUSTOM_MT1201 { | ||
186 | } | 198 | } |
187 | 199 | ||
188 | public void setUldno(String uldno) { | 200 | public void setUldno(String uldno) { |
189 | - this.uldno = uldno == null ? null : uldno.trim(); | 201 | + this.uldno = uldno; |
190 | } | 202 | } |
191 | 203 | ||
192 | public String getPlaneno() { | 204 | public String getPlaneno() { |
@@ -194,7 +206,7 @@ public class NMMS_CUSTOM_MT1201 { | @@ -194,7 +206,7 @@ public class NMMS_CUSTOM_MT1201 { | ||
194 | } | 206 | } |
195 | 207 | ||
196 | public void setPlaneno(String planeno) { | 208 | public void setPlaneno(String planeno) { |
197 | - this.planeno = planeno == null ? null : planeno.trim(); | 209 | + this.planeno = planeno; |
198 | } | 210 | } |
199 | 211 | ||
200 | public String getOpeuserid() { | 212 | public String getOpeuserid() { |
@@ -202,7 +214,7 @@ public class NMMS_CUSTOM_MT1201 { | @@ -202,7 +214,7 @@ public class NMMS_CUSTOM_MT1201 { | ||
202 | } | 214 | } |
203 | 215 | ||
204 | public void setOpeuserid(String opeuserid) { | 216 | public void setOpeuserid(String opeuserid) { |
205 | - this.opeuserid = opeuserid == null ? null : opeuserid.trim(); | 217 | + this.opeuserid = opeuserid; |
206 | } | 218 | } |
207 | 219 | ||
208 | public String getExt5() { | 220 | public String getExt5() { |
@@ -210,6 +222,30 @@ public class NMMS_CUSTOM_MT1201 { | @@ -210,6 +222,30 @@ public class NMMS_CUSTOM_MT1201 { | ||
210 | } | 222 | } |
211 | 223 | ||
212 | public void setExt5(String ext5) { | 224 | public void setExt5(String ext5) { |
213 | - this.ext5 = ext5 == null ? null : ext5.trim(); | 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; | ||
214 | } | 250 | } |
215 | } | 251 | } |
1 | package com.sunyo.wlpt.base.model; | 1 | package com.sunyo.wlpt.base.model; |
2 | 2 | ||
3 | +import com.fasterxml.jackson.annotation.JsonFormat; | ||
4 | + | ||
5 | +import java.math.BigDecimal; | ||
3 | import java.util.Date; | 6 | import java.util.Date; |
7 | +import java.util.List; | ||
4 | 8 | ||
5 | public class NMMS_CUSTOM_MT2201 { | 9 | public class NMMS_CUSTOM_MT2201 { |
6 | private String uuid; | 10 | private String uuid; |
@@ -13,21 +17,23 @@ public class NMMS_CUSTOM_MT2201 { | @@ -13,21 +17,23 @@ public class NMMS_CUSTOM_MT2201 { | ||
13 | 17 | ||
14 | private String goodsname; | 18 | private String goodsname; |
15 | 19 | ||
20 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
16 | private Date actime; | 21 | private Date actime; |
17 | 22 | ||
18 | private String carrier; | 23 | private String carrier; |
19 | 24 | ||
20 | private String flightno; | 25 | private String flightno; |
21 | 26 | ||
27 | + @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") | ||
22 | private Date flightdate; | 28 | private Date flightdate; |
23 | 29 | ||
24 | private String originstation; | 30 | private String originstation; |
25 | 31 | ||
26 | private String destinationstation; | 32 | private String destinationstation; |
27 | 33 | ||
28 | - private Integer piece; | 34 | + private BigDecimal piece; |
29 | 35 | ||
30 | - private Long weight; | 36 | + private BigDecimal weight; |
31 | 37 | ||
32 | private String splitcode; | 38 | private String splitcode; |
33 | 39 | ||
@@ -49,12 +55,16 @@ public class NMMS_CUSTOM_MT2201 { | @@ -49,12 +55,16 @@ public class NMMS_CUSTOM_MT2201 { | ||
49 | 55 | ||
50 | private String ext5; | 56 | private String ext5; |
51 | 57 | ||
58 | + private AWB_AWBINFO awbinfo; | ||
59 | + | ||
60 | + private List<NMMS_CUSTOM_MT2201> children; | ||
61 | + | ||
52 | public String getUuid() { | 62 | public String getUuid() { |
53 | return uuid; | 63 | return uuid; |
54 | } | 64 | } |
55 | 65 | ||
56 | public void setUuid(String uuid) { | 66 | public void setUuid(String uuid) { |
57 | - this.uuid = uuid == null ? null : uuid.trim(); | 67 | + this.uuid = uuid; |
58 | } | 68 | } |
59 | 69 | ||
60 | public String getAwba() { | 70 | public String getAwba() { |
@@ -62,7 +72,7 @@ public class NMMS_CUSTOM_MT2201 { | @@ -62,7 +72,7 @@ public class NMMS_CUSTOM_MT2201 { | ||
62 | } | 72 | } |
63 | 73 | ||
64 | public void setAwba(String awba) { | 74 | public void setAwba(String awba) { |
65 | - this.awba = awba == null ? null : awba.trim(); | 75 | + this.awba = awba; |
66 | } | 76 | } |
67 | 77 | ||
68 | public String getAwbh() { | 78 | public String getAwbh() { |
@@ -70,7 +80,7 @@ public class NMMS_CUSTOM_MT2201 { | @@ -70,7 +80,7 @@ public class NMMS_CUSTOM_MT2201 { | ||
70 | } | 80 | } |
71 | 81 | ||
72 | public void setAwbh(String awbh) { | 82 | public void setAwbh(String awbh) { |
73 | - this.awbh = awbh == null ? null : awbh.trim(); | 83 | + this.awbh = awbh; |
74 | } | 84 | } |
75 | 85 | ||
76 | public String getCustomcode() { | 86 | public String getCustomcode() { |
@@ -78,7 +88,7 @@ public class NMMS_CUSTOM_MT2201 { | @@ -78,7 +88,7 @@ public class NMMS_CUSTOM_MT2201 { | ||
78 | } | 88 | } |
79 | 89 | ||
80 | public void setCustomcode(String customcode) { | 90 | public void setCustomcode(String customcode) { |
81 | - this.customcode = customcode == null ? null : customcode.trim(); | 91 | + this.customcode = customcode; |
82 | } | 92 | } |
83 | 93 | ||
84 | public String getGoodsname() { | 94 | public String getGoodsname() { |
@@ -86,7 +96,7 @@ public class NMMS_CUSTOM_MT2201 { | @@ -86,7 +96,7 @@ public class NMMS_CUSTOM_MT2201 { | ||
86 | } | 96 | } |
87 | 97 | ||
88 | public void setGoodsname(String goodsname) { | 98 | public void setGoodsname(String goodsname) { |
89 | - this.goodsname = goodsname == null ? null : goodsname.trim(); | 99 | + this.goodsname = goodsname; |
90 | } | 100 | } |
91 | 101 | ||
92 | public Date getActime() { | 102 | public Date getActime() { |
@@ -102,7 +112,7 @@ public class NMMS_CUSTOM_MT2201 { | @@ -102,7 +112,7 @@ public class NMMS_CUSTOM_MT2201 { | ||
102 | } | 112 | } |
103 | 113 | ||
104 | public void setCarrier(String carrier) { | 114 | public void setCarrier(String carrier) { |
105 | - this.carrier = carrier == null ? null : carrier.trim(); | 115 | + this.carrier = carrier; |
106 | } | 116 | } |
107 | 117 | ||
108 | public String getFlightno() { | 118 | public String getFlightno() { |
@@ -110,7 +120,7 @@ public class NMMS_CUSTOM_MT2201 { | @@ -110,7 +120,7 @@ public class NMMS_CUSTOM_MT2201 { | ||
110 | } | 120 | } |
111 | 121 | ||
112 | public void setFlightno(String flightno) { | 122 | public void setFlightno(String flightno) { |
113 | - this.flightno = flightno == null ? null : flightno.trim(); | 123 | + this.flightno = flightno; |
114 | } | 124 | } |
115 | 125 | ||
116 | public Date getFlightdate() { | 126 | public Date getFlightdate() { |
@@ -126,7 +136,7 @@ public class NMMS_CUSTOM_MT2201 { | @@ -126,7 +136,7 @@ public class NMMS_CUSTOM_MT2201 { | ||
126 | } | 136 | } |
127 | 137 | ||
128 | public void setOriginstation(String originstation) { | 138 | public void setOriginstation(String originstation) { |
129 | - this.originstation = originstation == null ? null : originstation.trim(); | 139 | + this.originstation = originstation; |
130 | } | 140 | } |
131 | 141 | ||
132 | public String getDestinationstation() { | 142 | public String getDestinationstation() { |
@@ -134,22 +144,22 @@ public class NMMS_CUSTOM_MT2201 { | @@ -134,22 +144,22 @@ public class NMMS_CUSTOM_MT2201 { | ||
134 | } | 144 | } |
135 | 145 | ||
136 | public void setDestinationstation(String destinationstation) { | 146 | public void setDestinationstation(String destinationstation) { |
137 | - this.destinationstation = destinationstation == null ? null : destinationstation.trim(); | 147 | + this.destinationstation = destinationstation; |
138 | } | 148 | } |
139 | 149 | ||
140 | - public Integer getPiece() { | 150 | + public BigDecimal getPiece() { |
141 | return piece; | 151 | return piece; |
142 | } | 152 | } |
143 | 153 | ||
144 | - public void setPiece(Integer piece) { | 154 | + public void setPiece(BigDecimal piece) { |
145 | this.piece = piece; | 155 | this.piece = piece; |
146 | } | 156 | } |
147 | 157 | ||
148 | - public Long getWeight() { | 158 | + public BigDecimal getWeight() { |
149 | return weight; | 159 | return weight; |
150 | } | 160 | } |
151 | 161 | ||
152 | - public void setWeight(Long weight) { | 162 | + public void setWeight(BigDecimal weight) { |
153 | this.weight = weight; | 163 | this.weight = weight; |
154 | } | 164 | } |
155 | 165 | ||
@@ -158,7 +168,7 @@ public class NMMS_CUSTOM_MT2201 { | @@ -158,7 +168,7 @@ public class NMMS_CUSTOM_MT2201 { | ||
158 | } | 168 | } |
159 | 169 | ||
160 | public void setSplitcode(String splitcode) { | 170 | public void setSplitcode(String splitcode) { |
161 | - this.splitcode = splitcode == null ? null : splitcode.trim(); | 171 | + this.splitcode = splitcode; |
162 | } | 172 | } |
163 | 173 | ||
164 | public String getStatus() { | 174 | public String getStatus() { |
@@ -166,7 +176,7 @@ public class NMMS_CUSTOM_MT2201 { | @@ -166,7 +176,7 @@ public class NMMS_CUSTOM_MT2201 { | ||
166 | } | 176 | } |
167 | 177 | ||
168 | public void setStatus(String status) { | 178 | public void setStatus(String status) { |
169 | - this.status = status == null ? null : status.trim(); | 179 | + this.status = status; |
170 | } | 180 | } |
171 | 181 | ||
172 | public String getOffload() { | 182 | public String getOffload() { |
@@ -174,7 +184,7 @@ public class NMMS_CUSTOM_MT2201 { | @@ -174,7 +184,7 @@ public class NMMS_CUSTOM_MT2201 { | ||
174 | } | 184 | } |
175 | 185 | ||
176 | public void setOffload(String offload) { | 186 | public void setOffload(String offload) { |
177 | - this.offload = offload == null ? null : offload.trim(); | 187 | + this.offload = offload; |
178 | } | 188 | } |
179 | 189 | ||
180 | public String getOffloaduuid() { | 190 | public String getOffloaduuid() { |
@@ -182,7 +192,7 @@ public class NMMS_CUSTOM_MT2201 { | @@ -182,7 +192,7 @@ public class NMMS_CUSTOM_MT2201 { | ||
182 | } | 192 | } |
183 | 193 | ||
184 | public void setOffloaduuid(String offloaduuid) { | 194 | public void setOffloaduuid(String offloaduuid) { |
185 | - this.offloaduuid = offloaduuid == null ? null : offloaduuid.trim(); | 195 | + this.offloaduuid = offloaduuid; |
186 | } | 196 | } |
187 | 197 | ||
188 | public Boolean getIsdelete() { | 198 | public Boolean getIsdelete() { |
@@ -198,7 +208,7 @@ public class NMMS_CUSTOM_MT2201 { | @@ -198,7 +208,7 @@ public class NMMS_CUSTOM_MT2201 { | ||
198 | } | 208 | } |
199 | 209 | ||
200 | public void setCustomtype(String customtype) { | 210 | public void setCustomtype(String customtype) { |
201 | - this.customtype = customtype == null ? null : customtype.trim(); | 211 | + this.customtype = customtype; |
202 | } | 212 | } |
203 | 213 | ||
204 | public String getExt2() { | 214 | public String getExt2() { |
@@ -206,7 +216,7 @@ public class NMMS_CUSTOM_MT2201 { | @@ -206,7 +216,7 @@ public class NMMS_CUSTOM_MT2201 { | ||
206 | } | 216 | } |
207 | 217 | ||
208 | public void setExt2(String ext2) { | 218 | public void setExt2(String ext2) { |
209 | - this.ext2 = ext2 == null ? null : ext2.trim(); | 219 | + this.ext2 = ext2; |
210 | } | 220 | } |
211 | 221 | ||
212 | public String getExt3() { | 222 | public String getExt3() { |
@@ -214,7 +224,7 @@ public class NMMS_CUSTOM_MT2201 { | @@ -214,7 +224,7 @@ public class NMMS_CUSTOM_MT2201 { | ||
214 | } | 224 | } |
215 | 225 | ||
216 | public void setExt3(String ext3) { | 226 | public void setExt3(String ext3) { |
217 | - this.ext3 = ext3 == null ? null : ext3.trim(); | 227 | + this.ext3 = ext3; |
218 | } | 228 | } |
219 | 229 | ||
220 | public String getExt4() { | 230 | public String getExt4() { |
@@ -222,7 +232,7 @@ public class NMMS_CUSTOM_MT2201 { | @@ -222,7 +232,7 @@ public class NMMS_CUSTOM_MT2201 { | ||
222 | } | 232 | } |
223 | 233 | ||
224 | public void setExt4(String ext4) { | 234 | public void setExt4(String ext4) { |
225 | - this.ext4 = ext4 == null ? null : ext4.trim(); | 235 | + this.ext4 = ext4; |
226 | } | 236 | } |
227 | 237 | ||
228 | public String getExt5() { | 238 | public String getExt5() { |
@@ -230,6 +240,22 @@ public class NMMS_CUSTOM_MT2201 { | @@ -230,6 +240,22 @@ public class NMMS_CUSTOM_MT2201 { | ||
230 | } | 240 | } |
231 | 241 | ||
232 | public void setExt5(String ext5) { | 242 | public void setExt5(String ext5) { |
233 | - this.ext5 = ext5 == null ? null : ext5.trim(); | 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; | ||
234 | } | 260 | } |
235 | } | 261 | } |
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; |
6 | +import java.util.List; | ||
4 | 7 | ||
5 | public class NMMS_CUSTOM_MT3201 { | 8 | public class NMMS_CUSTOM_MT3201 { |
6 | private String uuid; | 9 | private String uuid; |
@@ -13,6 +16,7 @@ public class NMMS_CUSTOM_MT3201 { | @@ -13,6 +16,7 @@ public class NMMS_CUSTOM_MT3201 { | ||
13 | 16 | ||
14 | private String flightno; | 17 | private String flightno; |
15 | 18 | ||
19 | + @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") | ||
16 | private Date flightdate; | 20 | private Date flightdate; |
17 | 21 | ||
18 | private String originstation; | 22 | private String originstation; |
@@ -23,12 +27,14 @@ public class NMMS_CUSTOM_MT3201 { | @@ -23,12 +27,14 @@ public class NMMS_CUSTOM_MT3201 { | ||
23 | 27 | ||
24 | private Long weight; | 28 | private Long weight; |
25 | 29 | ||
30 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
26 | private Date arrivetime; | 31 | private Date arrivetime; |
27 | 32 | ||
28 | private String customcode; | 33 | private String customcode; |
29 | 34 | ||
30 | private String goodsname; | 35 | private String goodsname; |
31 | 36 | ||
37 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
32 | private Date actime; | 38 | private Date actime; |
33 | 39 | ||
34 | private String status; | 40 | private String status; |
@@ -45,6 +51,10 @@ public class NMMS_CUSTOM_MT3201 { | @@ -45,6 +51,10 @@ public class NMMS_CUSTOM_MT3201 { | ||
45 | 51 | ||
46 | private String ext5; | 52 | private String ext5; |
47 | 53 | ||
54 | + private AWB_AWBINFO awbinfo; | ||
55 | + | ||
56 | + private List<NMMS_CUSTOM_MT3201> children; | ||
57 | + | ||
48 | public String getUuid() { | 58 | public String getUuid() { |
49 | return uuid; | 59 | return uuid; |
50 | } | 60 | } |
@@ -212,4 +222,20 @@ public class NMMS_CUSTOM_MT3201 { | @@ -212,4 +222,20 @@ public class NMMS_CUSTOM_MT3201 { | ||
212 | public void setExt5(String ext5) { | 222 | public void setExt5(String ext5) { |
213 | this.ext5 = ext5 == null ? null : ext5.trim(); | 223 | this.ext5 = ext5 == null ? null : ext5.trim(); |
214 | } | 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 | + } | ||
215 | } | 241 | } |
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; |
6 | +import java.util.List; | ||
4 | 7 | ||
5 | public class NMMS_CUSTOM_MT4201 { | 8 | public class NMMS_CUSTOM_MT4201 { |
6 | private String uuid; | 9 | private String uuid; |
@@ -9,6 +12,7 @@ public class NMMS_CUSTOM_MT4201 { | @@ -9,6 +12,7 @@ public class NMMS_CUSTOM_MT4201 { | ||
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 originstation; | 18 | private String originstation; |
@@ -27,8 +31,10 @@ public class NMMS_CUSTOM_MT4201 { | @@ -27,8 +31,10 @@ public class NMMS_CUSTOM_MT4201 { | ||
27 | 31 | ||
28 | private String goodsname; | 32 | private String goodsname; |
29 | 33 | ||
34 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
30 | private Date actime; | 35 | private Date actime; |
31 | 36 | ||
37 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
32 | private Date loadingtime; | 38 | private Date loadingtime; |
33 | 39 | ||
34 | private String specialgoods; | 40 | private String specialgoods; |
@@ -47,6 +53,10 @@ public class NMMS_CUSTOM_MT4201 { | @@ -47,6 +53,10 @@ public class NMMS_CUSTOM_MT4201 { | ||
47 | 53 | ||
48 | private String ext5; | 54 | private String ext5; |
49 | 55 | ||
56 | + private AWB_AWBINFO awbinfo; | ||
57 | + | ||
58 | + private List<NMMS_CUSTOM_MT4201> children; | ||
59 | + | ||
50 | public String getUuid() { | 60 | public String getUuid() { |
51 | return uuid; | 61 | return uuid; |
52 | } | 62 | } |
@@ -222,4 +232,20 @@ public class NMMS_CUSTOM_MT4201 { | @@ -222,4 +232,20 @@ public class NMMS_CUSTOM_MT4201 { | ||
222 | public void setExt5(String ext5) { | 232 | public void setExt5(String ext5) { |
223 | this.ext5 = ext5 == null ? null : ext5.trim(); | 233 | this.ext5 = ext5 == null ? null : ext5.trim(); |
224 | } | 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 | + } | ||
225 | } | 251 | } |
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; |
6 | +import java.util.List; | ||
4 | 7 | ||
5 | public class NMMS_CUSTOM_MT520X { | 8 | public class NMMS_CUSTOM_MT520X { |
6 | private String uuid; | 9 | private String uuid; |
@@ -13,6 +16,7 @@ public class NMMS_CUSTOM_MT520X { | @@ -13,6 +16,7 @@ public class NMMS_CUSTOM_MT520X { | ||
13 | 16 | ||
14 | private String flightno; | 17 | private String flightno; |
15 | 18 | ||
19 | + @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") | ||
16 | private Date flightdate; | 20 | private Date flightdate; |
17 | 21 | ||
18 | private String originstation; | 22 | private String originstation; |
@@ -23,20 +27,25 @@ public class NMMS_CUSTOM_MT520X { | @@ -23,20 +27,25 @@ public class NMMS_CUSTOM_MT520X { | ||
23 | 27 | ||
24 | private Long weight; | 28 | private Long weight; |
25 | 29 | ||
30 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
26 | private Date starttime; | 31 | private Date starttime; |
27 | 32 | ||
33 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
28 | private Date endtime; | 34 | private Date endtime; |
29 | 35 | ||
30 | private String customcode; | 36 | private String customcode; |
31 | 37 | ||
32 | private String goodsname; | 38 | private String goodsname; |
33 | 39 | ||
40 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
34 | private Date actime; | 41 | private Date actime; |
35 | 42 | ||
36 | private String rcfdep; | 43 | private String rcfdep; |
37 | 44 | ||
38 | private String status; | 45 | private String status; |
39 | 46 | ||
47 | + private String messageType; | ||
48 | + | ||
40 | private Boolean isdelete; | 49 | private Boolean isdelete; |
41 | 50 | ||
42 | private String ext1; | 51 | private String ext1; |
@@ -49,6 +58,10 @@ public class NMMS_CUSTOM_MT520X { | @@ -49,6 +58,10 @@ public class NMMS_CUSTOM_MT520X { | ||
49 | 58 | ||
50 | private String ext5; | 59 | private String ext5; |
51 | 60 | ||
61 | + private AWB_AWBINFO awbinfo; | ||
62 | + | ||
63 | + private List<NMMS_CUSTOM_MT520X> children; | ||
64 | + | ||
52 | public String getUuid() { | 65 | public String getUuid() { |
53 | return uuid; | 66 | return uuid; |
54 | } | 67 | } |
@@ -181,6 +194,14 @@ public class NMMS_CUSTOM_MT520X { | @@ -181,6 +194,14 @@ public class NMMS_CUSTOM_MT520X { | ||
181 | return status; | 194 | return status; |
182 | } | 195 | } |
183 | 196 | ||
197 | + public String getMessageType() { | ||
198 | + return messageType; | ||
199 | + } | ||
200 | + | ||
201 | + public void setMessageType(String messageType) { | ||
202 | + this.messageType = messageType; | ||
203 | + } | ||
204 | + | ||
184 | public void setStatus(String status) { | 205 | public void setStatus(String status) { |
185 | this.status = status == null ? null : status.trim(); | 206 | this.status = status == null ? null : status.trim(); |
186 | } | 207 | } |
@@ -232,4 +253,20 @@ public class NMMS_CUSTOM_MT520X { | @@ -232,4 +253,20 @@ public class NMMS_CUSTOM_MT520X { | ||
232 | public void setExt5(String ext5) { | 253 | public void setExt5(String ext5) { |
233 | this.ext5 = ext5 == null ? null : ext5.trim(); | 254 | this.ext5 = ext5 == null ? null : ext5.trim(); |
234 | } | 255 | } |
256 | + | ||
257 | + public AWB_AWBINFO getAwbinfo() { | ||
258 | + return awbinfo; | ||
259 | + } | ||
260 | + | ||
261 | + public void setAwbinfo(AWB_AWBINFO awbinfo) { | ||
262 | + this.awbinfo = awbinfo; | ||
263 | + } | ||
264 | + | ||
265 | + public List<NMMS_CUSTOM_MT520X> getChildren() { | ||
266 | + return children; | ||
267 | + } | ||
268 | + | ||
269 | + public void setChildren(List<NMMS_CUSTOM_MT520X> children) { | ||
270 | + this.children = children; | ||
271 | + } | ||
235 | } | 272 | } |
1 | package com.sunyo.wlpt.base.model; | 1 | package com.sunyo.wlpt.base.model; |
2 | 2 | ||
3 | +import java.util.List; | ||
4 | + | ||
3 | public class NMMS_CUSTOM_MT8205 { | 5 | public class NMMS_CUSTOM_MT8205 { |
4 | private String uuid; | 6 | private String uuid; |
5 | 7 | ||
@@ -35,6 +37,11 @@ public class NMMS_CUSTOM_MT8205 { | @@ -35,6 +37,11 @@ public class NMMS_CUSTOM_MT8205 { | ||
35 | 37 | ||
36 | private String ext5; | 38 | private String ext5; |
37 | 39 | ||
40 | + private AWB_AWBINFO awbinfo; | ||
41 | + | ||
42 | + private List<NMMS_CUSTOM_MT8205> children; | ||
43 | + | ||
44 | + | ||
38 | public String getUuid() { | 45 | public String getUuid() { |
39 | return uuid; | 46 | return uuid; |
40 | } | 47 | } |
@@ -170,4 +177,20 @@ public class NMMS_CUSTOM_MT8205 { | @@ -170,4 +177,20 @@ public class NMMS_CUSTOM_MT8205 { | ||
170 | public void setExt5(String ext5) { | 177 | public void setExt5(String ext5) { |
171 | this.ext5 = ext5 == null ? null : ext5.trim(); | 178 | this.ext5 = ext5 == null ? null : ext5.trim(); |
172 | } | 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 | + } | ||
173 | } | 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; |
-
请 注册 或 登录 后发表评论