正在显示
33 个修改的文件
包含
3505 行增加
和
0 行删除
pom.xml
0 → 100644
1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
5 | + <modelVersion>4.0.0</modelVersion> | ||
6 | + | ||
7 | + <groupId>com.sunyo.wlpt</groupId> | ||
8 | + <artifactId>base</artifactId> | ||
9 | + <version>1.0-SNAPSHOT</version> | ||
10 | + | ||
11 | + | ||
12 | + <build> | ||
13 | + <plugins> | ||
14 | + <plugin> | ||
15 | + <groupId>org.springframework.boot</groupId> | ||
16 | + <artifactId>spring-boot-maven-plugin</artifactId> | ||
17 | + <configuration> | ||
18 | + <includeSystemScope>true</includeSystemScope> | ||
19 | + </configuration> | ||
20 | + </plugin> | ||
21 | + <!-- mybatis generator 自动生成代码插件 --> | ||
22 | + <plugin> | ||
23 | + <groupId>org.mybatis.generator</groupId> | ||
24 | + <artifactId>mybatis-generator-maven-plugin</artifactId> | ||
25 | + <version>1.3.2</version> | ||
26 | + <configuration> | ||
27 | + <configurationFile>${basedir}/src/main/resources/generator/generatorConfig.xml</configurationFile> | ||
28 | + <overwrite>true</overwrite> | ||
29 | + <verbose>true</verbose> | ||
30 | + </configuration> | ||
31 | + </plugin> | ||
32 | + </plugins> | ||
33 | + </build> | ||
34 | +</project> |
1 | +package com.sunyo.wlpt.base.dao; | ||
2 | + | ||
3 | +import com.sunyo.wlpt.base.model.AWB_AWBINFO; | ||
4 | + | ||
5 | +public interface AWB_AWBINFOMapper { | ||
6 | + int deleteByPrimaryKey(String billid); | ||
7 | + | ||
8 | + int insert(AWB_AWBINFO record); | ||
9 | + | ||
10 | + int insertSelective(AWB_AWBINFO record); | ||
11 | + | ||
12 | + AWB_AWBINFO selectByPrimaryKey(String billid); | ||
13 | + | ||
14 | + int updateByPrimaryKeySelective(AWB_AWBINFO record); | ||
15 | + | ||
16 | + int updateByPrimaryKey(AWB_AWBINFO record); | ||
17 | +} |
1 | +package com.sunyo.wlpt.base.dao; | ||
2 | + | ||
3 | +import com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT1201; | ||
4 | + | ||
5 | +public interface NMMS_CUSTOM_MT1201Mapper { | ||
6 | + int deleteByPrimaryKey(String uuid); | ||
7 | + | ||
8 | + int insert(NMMS_CUSTOM_MT1201 record); | ||
9 | + | ||
10 | + int insertSelective(NMMS_CUSTOM_MT1201 record); | ||
11 | + | ||
12 | + NMMS_CUSTOM_MT1201 selectByPrimaryKey(String uuid); | ||
13 | + | ||
14 | + int updateByPrimaryKeySelective(NMMS_CUSTOM_MT1201 record); | ||
15 | + | ||
16 | + int updateByPrimaryKey(NMMS_CUSTOM_MT1201 record); | ||
17 | +} |
1 | +package com.sunyo.wlpt.base.dao; | ||
2 | + | ||
3 | +import com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT2201; | ||
4 | + | ||
5 | +public interface NMMS_CUSTOM_MT2201Mapper { | ||
6 | + int deleteByPrimaryKey(String uuid); | ||
7 | + | ||
8 | + int insert(NMMS_CUSTOM_MT2201 record); | ||
9 | + | ||
10 | + int insertSelective(NMMS_CUSTOM_MT2201 record); | ||
11 | + | ||
12 | + NMMS_CUSTOM_MT2201 selectByPrimaryKey(String uuid); | ||
13 | + | ||
14 | + int updateByPrimaryKeySelective(NMMS_CUSTOM_MT2201 record); | ||
15 | + | ||
16 | + int updateByPrimaryKey(NMMS_CUSTOM_MT2201 record); | ||
17 | +} |
1 | +package com.sunyo.wlpt.base.dao; | ||
2 | + | ||
3 | +import com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT3201; | ||
4 | + | ||
5 | +public interface NMMS_CUSTOM_MT3201Mapper { | ||
6 | + int deleteByPrimaryKey(String uuid); | ||
7 | + | ||
8 | + int insert(NMMS_CUSTOM_MT3201 record); | ||
9 | + | ||
10 | + int insertSelective(NMMS_CUSTOM_MT3201 record); | ||
11 | + | ||
12 | + NMMS_CUSTOM_MT3201 selectByPrimaryKey(String uuid); | ||
13 | + | ||
14 | + int updateByPrimaryKeySelective(NMMS_CUSTOM_MT3201 record); | ||
15 | + | ||
16 | + int updateByPrimaryKey(NMMS_CUSTOM_MT3201 record); | ||
17 | +} |
1 | +package com.sunyo.wlpt.base.dao; | ||
2 | + | ||
3 | +import com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT4201; | ||
4 | + | ||
5 | +public interface NMMS_CUSTOM_MT4201Mapper { | ||
6 | + int deleteByPrimaryKey(String uuid); | ||
7 | + | ||
8 | + int insert(NMMS_CUSTOM_MT4201 record); | ||
9 | + | ||
10 | + int insertSelective(NMMS_CUSTOM_MT4201 record); | ||
11 | + | ||
12 | + NMMS_CUSTOM_MT4201 selectByPrimaryKey(String uuid); | ||
13 | + | ||
14 | + int updateByPrimaryKeySelective(NMMS_CUSTOM_MT4201 record); | ||
15 | + | ||
16 | + int updateByPrimaryKey(NMMS_CUSTOM_MT4201 record); | ||
17 | +} |
1 | +package com.sunyo.wlpt.base.dao; | ||
2 | + | ||
3 | +import com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT520X; | ||
4 | + | ||
5 | +public interface NMMS_CUSTOM_MT520XMapper { | ||
6 | + int deleteByPrimaryKey(String uuid); | ||
7 | + | ||
8 | + int insert(NMMS_CUSTOM_MT520X record); | ||
9 | + | ||
10 | + int insertSelective(NMMS_CUSTOM_MT520X record); | ||
11 | + | ||
12 | + NMMS_CUSTOM_MT520X selectByPrimaryKey(String uuid); | ||
13 | + | ||
14 | + int updateByPrimaryKeySelective(NMMS_CUSTOM_MT520X record); | ||
15 | + | ||
16 | + int updateByPrimaryKey(NMMS_CUSTOM_MT520X record); | ||
17 | +} |
1 | +package com.sunyo.wlpt.base.dao; | ||
2 | + | ||
3 | +import com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT8205; | ||
4 | + | ||
5 | +public interface NMMS_CUSTOM_MT8205Mapper { | ||
6 | + int deleteByPrimaryKey(String uuid); | ||
7 | + | ||
8 | + int insert(NMMS_CUSTOM_MT8205 record); | ||
9 | + | ||
10 | + int insertSelective(NMMS_CUSTOM_MT8205 record); | ||
11 | + | ||
12 | + NMMS_CUSTOM_MT8205 selectByPrimaryKey(String uuid); | ||
13 | + | ||
14 | + int updateByPrimaryKeySelective(NMMS_CUSTOM_MT8205 record); | ||
15 | + | ||
16 | + int updateByPrimaryKey(NMMS_CUSTOM_MT8205 record); | ||
17 | +} |
1 | +package com.sunyo.wlpt.base.dao; | ||
2 | + | ||
3 | +import com.sunyo.wlpt.base.model.NMMS_CUSTOM_RESPONSE; | ||
4 | + | ||
5 | +public interface NMMS_CUSTOM_RESPONSEMapper { | ||
6 | + int deleteByPrimaryKey(String id); | ||
7 | + | ||
8 | + int insert(NMMS_CUSTOM_RESPONSE record); | ||
9 | + | ||
10 | + int insertSelective(NMMS_CUSTOM_RESPONSE record); | ||
11 | + | ||
12 | + NMMS_CUSTOM_RESPONSE selectByPrimaryKey(String id); | ||
13 | + | ||
14 | + int updateByPrimaryKeySelective(NMMS_CUSTOM_RESPONSE record); | ||
15 | + | ||
16 | + int updateByPrimaryKeyWithBLOBs(NMMS_CUSTOM_RESPONSE record); | ||
17 | + | ||
18 | + int updateByPrimaryKey(NMMS_CUSTOM_RESPONSE record); | ||
19 | +} |
1 | +package com.sunyo.wlpt.base.dao; | ||
2 | + | ||
3 | +import com.sunyo.wlpt.base.model.NMMS_FFM_INFO; | ||
4 | + | ||
5 | +public interface NMMS_FFM_INFOMapper { | ||
6 | + int deleteByPrimaryKey(String autoid); | ||
7 | + | ||
8 | + int insert(NMMS_FFM_INFO record); | ||
9 | + | ||
10 | + int insertSelective(NMMS_FFM_INFO record); | ||
11 | + | ||
12 | + NMMS_FFM_INFO selectByPrimaryKey(String autoid); | ||
13 | + | ||
14 | + int updateByPrimaryKeySelective(NMMS_FFM_INFO record); | ||
15 | + | ||
16 | + int updateByPrimaryKey(NMMS_FFM_INFO record); | ||
17 | +} |
1 | +package com.sunyo.wlpt.base.model; | ||
2 | + | ||
3 | +import java.math.BigDecimal; | ||
4 | +import java.util.Date; | ||
5 | + | ||
6 | +public class AWB_AWBINFO { | ||
7 | + private String billid; | ||
8 | + | ||
9 | + private String stocktypeid; | ||
10 | + | ||
11 | + private String stockpre; | ||
12 | + | ||
13 | + private String stockno; | ||
14 | + | ||
15 | + private String productid; | ||
16 | + | ||
17 | + private String carrierproductid; | ||
18 | + | ||
19 | + private String delflag; | ||
20 | + | ||
21 | + private String previousbillid; | ||
22 | + | ||
23 | + private String domint; | ||
24 | + | ||
25 | + private String customctl; | ||
26 | + | ||
27 | + private String specopeid; | ||
28 | + | ||
29 | + private String specopeidext; | ||
30 | + | ||
31 | + private String sairportid; | ||
32 | + | ||
33 | + private String scityid; | ||
34 | + | ||
35 | + private String eairportid; | ||
36 | + | ||
37 | + private String ecityid; | ||
38 | + | ||
39 | + private String by1; | ||
40 | + | ||
41 | + private String dest1; | ||
42 | + | ||
43 | + private String dest1city; | ||
44 | + | ||
45 | + private String by2; | ||
46 | + | ||
47 | + private String dest2; | ||
48 | + | ||
49 | + private String dest2city; | ||
50 | + | ||
51 | + private String by3; | ||
52 | + | ||
53 | + private String dest3; | ||
54 | + | ||
55 | + private String dest3city; | ||
56 | + | ||
57 | + private String by4; | ||
58 | + | ||
59 | + private String dest4; | ||
60 | + | ||
61 | + private String dest4city; | ||
62 | + | ||
63 | + private String cargono; | ||
64 | + | ||
65 | + private String cargonm; | ||
66 | + | ||
67 | + private String pack; | ||
68 | + | ||
69 | + private String meas; | ||
70 | + | ||
71 | + private BigDecimal pcs; | ||
72 | + | ||
73 | + private BigDecimal weight; | ||
74 | + | ||
75 | + private BigDecimal feewt; | ||
76 | + | ||
77 | + private BigDecimal vol; | ||
78 | + | ||
79 | + private String ctrlopedepartment; | ||
80 | + | ||
81 | + private String shprname; | ||
82 | + | ||
83 | + private String shprmobiletype; | ||
84 | + | ||
85 | + private String shprtel; | ||
86 | + | ||
87 | + private String shpraddress; | ||
88 | + | ||
89 | + private String shprcountyr; | ||
90 | + | ||
91 | + private String shpcomid; | ||
92 | + | ||
93 | + private String shpaeocode; | ||
94 | + | ||
95 | + private String shpcustomerid; | ||
96 | + | ||
97 | + private String cnsnname; | ||
98 | + | ||
99 | + private String cnsrmobiletype; | ||
100 | + | ||
101 | + private String cnsntel; | ||
102 | + | ||
103 | + private String cnsnaddress; | ||
104 | + | ||
105 | + private String cnscountyr; | ||
106 | + | ||
107 | + private String cnscomid; | ||
108 | + | ||
109 | + private String cnsaeocode; | ||
110 | + | ||
111 | + private String cnsrctcname; | ||
112 | + | ||
113 | + private String cnsrctctel; | ||
114 | + | ||
115 | + private String csgcustomerid; | ||
116 | + | ||
117 | + private String collected; | ||
118 | + | ||
119 | + private BigDecimal exchagerate; | ||
120 | + | ||
121 | + private String comat; | ||
122 | + | ||
123 | + private String refrigerated; | ||
124 | + | ||
125 | + private BigDecimal forknum; | ||
126 | + | ||
127 | + private String whshold; | ||
128 | + | ||
129 | + private String expcusttransit; | ||
130 | + | ||
131 | + private String impcusttransit; | ||
132 | + | ||
133 | + private String shorttrans; | ||
134 | + | ||
135 | + private String shorttransbup; | ||
136 | + | ||
137 | + private String cargoowner; | ||
138 | + | ||
139 | + private Date chargetime; | ||
140 | + | ||
141 | + private String isinstruction; | ||
142 | + | ||
143 | + private String notify; | ||
144 | + | ||
145 | + private BigDecimal shippervalue; | ||
146 | + | ||
147 | + private BigDecimal trafficvalue; | ||
148 | + | ||
149 | + private BigDecimal customvalue; | ||
150 | + | ||
151 | + private BigDecimal insurevalue; | ||
152 | + | ||
153 | + private String fileattached; | ||
154 | + | ||
155 | + private String ratetype; | ||
156 | + | ||
157 | + private String processingmethod; | ||
158 | + | ||
159 | + private String handlingcircs; | ||
160 | + | ||
161 | + private String reservedtonnage; | ||
162 | + | ||
163 | + private BigDecimal carriage; | ||
164 | + | ||
165 | + private BigDecimal rate; | ||
166 | + | ||
167 | + private String crtoper; | ||
168 | + | ||
169 | + private String wtunit; | ||
170 | + | ||
171 | + private BigDecimal originalwt; | ||
172 | + | ||
173 | + private BigDecimal originalfeewt; | ||
174 | + | ||
175 | + private String volunit; | ||
176 | + | ||
177 | + private String currencyid; | ||
178 | + | ||
179 | + private BigDecimal originalvol; | ||
180 | + | ||
181 | + private Date crtopetime; | ||
182 | + | ||
183 | + private String dlvpriority; | ||
184 | + | ||
185 | + private String chked; | ||
186 | + | ||
187 | + private Short labelnum; | ||
188 | + | ||
189 | + private String shpcustomer; | ||
190 | + | ||
191 | + private String crtagent; | ||
192 | + | ||
193 | + private Date crtdate; | ||
194 | + | ||
195 | + private BigDecimal extraweight; | ||
196 | + | ||
197 | + private String storeremark; | ||
198 | + | ||
199 | + private String balanceremark; | ||
200 | + | ||
201 | + private String filechked; | ||
202 | + | ||
203 | + private String iscarbalance; | ||
204 | + | ||
205 | + private String cnsnidcard; | ||
206 | + | ||
207 | + private String ciqcheck; | ||
208 | + | ||
209 | + private String tmpbillno; | ||
210 | + | ||
211 | + private String subbillid; | ||
212 | + | ||
213 | + private String istrans; | ||
214 | + | ||
215 | + private String splittag; | ||
216 | + | ||
217 | + private String customstrans; | ||
218 | + | ||
219 | + private String endoper; | ||
220 | + | ||
221 | + private Date endopetime; | ||
222 | + | ||
223 | + private String confirmoper; | ||
224 | + | ||
225 | + private Date confirmopetime; | ||
226 | + | ||
227 | + private String csgcustomer; | ||
228 | + | ||
229 | + private String relationbillid; | ||
230 | + | ||
231 | + private String customsCountry; | ||
232 | + | ||
233 | + private String customsCity; | ||
234 | + | ||
235 | + private String customsRemark; | ||
236 | + | ||
237 | + private String cargosource; | ||
238 | + | ||
239 | + private String cargonmch; | ||
240 | + | ||
241 | + private String isdgr; | ||
242 | + | ||
243 | + private BigDecimal percent; | ||
244 | + | ||
245 | + private String awbtype; | ||
246 | + | ||
247 | + private String status; | ||
248 | + | ||
249 | + private String paymodel; | ||
250 | + | ||
251 | + private Boolean isdelete; | ||
252 | + | ||
253 | + private Date optime; | ||
254 | + | ||
255 | + public String getBillid() { | ||
256 | + return billid; | ||
257 | + } | ||
258 | + | ||
259 | + public void setBillid(String billid) { | ||
260 | + this.billid = billid == null ? null : billid.trim(); | ||
261 | + } | ||
262 | + | ||
263 | + public String getStocktypeid() { | ||
264 | + return stocktypeid; | ||
265 | + } | ||
266 | + | ||
267 | + public void setStocktypeid(String stocktypeid) { | ||
268 | + this.stocktypeid = stocktypeid == null ? null : stocktypeid.trim(); | ||
269 | + } | ||
270 | + | ||
271 | + public String getStockpre() { | ||
272 | + return stockpre; | ||
273 | + } | ||
274 | + | ||
275 | + public void setStockpre(String stockpre) { | ||
276 | + this.stockpre = stockpre == null ? null : stockpre.trim(); | ||
277 | + } | ||
278 | + | ||
279 | + public String getStockno() { | ||
280 | + return stockno; | ||
281 | + } | ||
282 | + | ||
283 | + public void setStockno(String stockno) { | ||
284 | + this.stockno = stockno == null ? null : stockno.trim(); | ||
285 | + } | ||
286 | + | ||
287 | + public String getProductid() { | ||
288 | + return productid; | ||
289 | + } | ||
290 | + | ||
291 | + public void setProductid(String productid) { | ||
292 | + this.productid = productid == null ? null : productid.trim(); | ||
293 | + } | ||
294 | + | ||
295 | + public String getCarrierproductid() { | ||
296 | + return carrierproductid; | ||
297 | + } | ||
298 | + | ||
299 | + public void setCarrierproductid(String carrierproductid) { | ||
300 | + this.carrierproductid = carrierproductid == null ? null : carrierproductid.trim(); | ||
301 | + } | ||
302 | + | ||
303 | + public String getDelflag() { | ||
304 | + return delflag; | ||
305 | + } | ||
306 | + | ||
307 | + public void setDelflag(String delflag) { | ||
308 | + this.delflag = delflag == null ? null : delflag.trim(); | ||
309 | + } | ||
310 | + | ||
311 | + public String getPreviousbillid() { | ||
312 | + return previousbillid; | ||
313 | + } | ||
314 | + | ||
315 | + public void setPreviousbillid(String previousbillid) { | ||
316 | + this.previousbillid = previousbillid == null ? null : previousbillid.trim(); | ||
317 | + } | ||
318 | + | ||
319 | + public String getDomint() { | ||
320 | + return domint; | ||
321 | + } | ||
322 | + | ||
323 | + public void setDomint(String domint) { | ||
324 | + this.domint = domint == null ? null : domint.trim(); | ||
325 | + } | ||
326 | + | ||
327 | + public String getCustomctl() { | ||
328 | + return customctl; | ||
329 | + } | ||
330 | + | ||
331 | + public void setCustomctl(String customctl) { | ||
332 | + this.customctl = customctl == null ? null : customctl.trim(); | ||
333 | + } | ||
334 | + | ||
335 | + public String getSpecopeid() { | ||
336 | + return specopeid; | ||
337 | + } | ||
338 | + | ||
339 | + public void setSpecopeid(String specopeid) { | ||
340 | + this.specopeid = specopeid == null ? null : specopeid.trim(); | ||
341 | + } | ||
342 | + | ||
343 | + public String getSpecopeidext() { | ||
344 | + return specopeidext; | ||
345 | + } | ||
346 | + | ||
347 | + public void setSpecopeidext(String specopeidext) { | ||
348 | + this.specopeidext = specopeidext == null ? null : specopeidext.trim(); | ||
349 | + } | ||
350 | + | ||
351 | + public String getSairportid() { | ||
352 | + return sairportid; | ||
353 | + } | ||
354 | + | ||
355 | + public void setSairportid(String sairportid) { | ||
356 | + this.sairportid = sairportid == null ? null : sairportid.trim(); | ||
357 | + } | ||
358 | + | ||
359 | + public String getScityid() { | ||
360 | + return scityid; | ||
361 | + } | ||
362 | + | ||
363 | + public void setScityid(String scityid) { | ||
364 | + this.scityid = scityid == null ? null : scityid.trim(); | ||
365 | + } | ||
366 | + | ||
367 | + public String getEairportid() { | ||
368 | + return eairportid; | ||
369 | + } | ||
370 | + | ||
371 | + public void setEairportid(String eairportid) { | ||
372 | + this.eairportid = eairportid == null ? null : eairportid.trim(); | ||
373 | + } | ||
374 | + | ||
375 | + public String getEcityid() { | ||
376 | + return ecityid; | ||
377 | + } | ||
378 | + | ||
379 | + public void setEcityid(String ecityid) { | ||
380 | + this.ecityid = ecityid == null ? null : ecityid.trim(); | ||
381 | + } | ||
382 | + | ||
383 | + public String getBy1() { | ||
384 | + return by1; | ||
385 | + } | ||
386 | + | ||
387 | + public void setBy1(String by1) { | ||
388 | + this.by1 = by1 == null ? null : by1.trim(); | ||
389 | + } | ||
390 | + | ||
391 | + public String getDest1() { | ||
392 | + return dest1; | ||
393 | + } | ||
394 | + | ||
395 | + public void setDest1(String dest1) { | ||
396 | + this.dest1 = dest1 == null ? null : dest1.trim(); | ||
397 | + } | ||
398 | + | ||
399 | + public String getDest1city() { | ||
400 | + return dest1city; | ||
401 | + } | ||
402 | + | ||
403 | + public void setDest1city(String dest1city) { | ||
404 | + this.dest1city = dest1city == null ? null : dest1city.trim(); | ||
405 | + } | ||
406 | + | ||
407 | + public String getBy2() { | ||
408 | + return by2; | ||
409 | + } | ||
410 | + | ||
411 | + public void setBy2(String by2) { | ||
412 | + this.by2 = by2 == null ? null : by2.trim(); | ||
413 | + } | ||
414 | + | ||
415 | + public String getDest2() { | ||
416 | + return dest2; | ||
417 | + } | ||
418 | + | ||
419 | + public void setDest2(String dest2) { | ||
420 | + this.dest2 = dest2 == null ? null : dest2.trim(); | ||
421 | + } | ||
422 | + | ||
423 | + public String getDest2city() { | ||
424 | + return dest2city; | ||
425 | + } | ||
426 | + | ||
427 | + public void setDest2city(String dest2city) { | ||
428 | + this.dest2city = dest2city == null ? null : dest2city.trim(); | ||
429 | + } | ||
430 | + | ||
431 | + public String getBy3() { | ||
432 | + return by3; | ||
433 | + } | ||
434 | + | ||
435 | + public void setBy3(String by3) { | ||
436 | + this.by3 = by3 == null ? null : by3.trim(); | ||
437 | + } | ||
438 | + | ||
439 | + public String getDest3() { | ||
440 | + return dest3; | ||
441 | + } | ||
442 | + | ||
443 | + public void setDest3(String dest3) { | ||
444 | + this.dest3 = dest3 == null ? null : dest3.trim(); | ||
445 | + } | ||
446 | + | ||
447 | + public String getDest3city() { | ||
448 | + return dest3city; | ||
449 | + } | ||
450 | + | ||
451 | + public void setDest3city(String dest3city) { | ||
452 | + this.dest3city = dest3city == null ? null : dest3city.trim(); | ||
453 | + } | ||
454 | + | ||
455 | + public String getBy4() { | ||
456 | + return by4; | ||
457 | + } | ||
458 | + | ||
459 | + public void setBy4(String by4) { | ||
460 | + this.by4 = by4 == null ? null : by4.trim(); | ||
461 | + } | ||
462 | + | ||
463 | + public String getDest4() { | ||
464 | + return dest4; | ||
465 | + } | ||
466 | + | ||
467 | + public void setDest4(String dest4) { | ||
468 | + this.dest4 = dest4 == null ? null : dest4.trim(); | ||
469 | + } | ||
470 | + | ||
471 | + public String getDest4city() { | ||
472 | + return dest4city; | ||
473 | + } | ||
474 | + | ||
475 | + public void setDest4city(String dest4city) { | ||
476 | + this.dest4city = dest4city == null ? null : dest4city.trim(); | ||
477 | + } | ||
478 | + | ||
479 | + public String getCargono() { | ||
480 | + return cargono; | ||
481 | + } | ||
482 | + | ||
483 | + public void setCargono(String cargono) { | ||
484 | + this.cargono = cargono == null ? null : cargono.trim(); | ||
485 | + } | ||
486 | + | ||
487 | + public String getCargonm() { | ||
488 | + return cargonm; | ||
489 | + } | ||
490 | + | ||
491 | + public void setCargonm(String cargonm) { | ||
492 | + this.cargonm = cargonm == null ? null : cargonm.trim(); | ||
493 | + } | ||
494 | + | ||
495 | + public String getPack() { | ||
496 | + return pack; | ||
497 | + } | ||
498 | + | ||
499 | + public void setPack(String pack) { | ||
500 | + this.pack = pack == null ? null : pack.trim(); | ||
501 | + } | ||
502 | + | ||
503 | + public String getMeas() { | ||
504 | + return meas; | ||
505 | + } | ||
506 | + | ||
507 | + public void setMeas(String meas) { | ||
508 | + this.meas = meas == null ? null : meas.trim(); | ||
509 | + } | ||
510 | + | ||
511 | + public BigDecimal getPcs() { | ||
512 | + return pcs; | ||
513 | + } | ||
514 | + | ||
515 | + public void setPcs(BigDecimal pcs) { | ||
516 | + this.pcs = pcs; | ||
517 | + } | ||
518 | + | ||
519 | + public BigDecimal getWeight() { | ||
520 | + return weight; | ||
521 | + } | ||
522 | + | ||
523 | + public void setWeight(BigDecimal weight) { | ||
524 | + this.weight = weight; | ||
525 | + } | ||
526 | + | ||
527 | + public BigDecimal getFeewt() { | ||
528 | + return feewt; | ||
529 | + } | ||
530 | + | ||
531 | + public void setFeewt(BigDecimal feewt) { | ||
532 | + this.feewt = feewt; | ||
533 | + } | ||
534 | + | ||
535 | + public BigDecimal getVol() { | ||
536 | + return vol; | ||
537 | + } | ||
538 | + | ||
539 | + public void setVol(BigDecimal vol) { | ||
540 | + this.vol = vol; | ||
541 | + } | ||
542 | + | ||
543 | + public String getCtrlopedepartment() { | ||
544 | + return ctrlopedepartment; | ||
545 | + } | ||
546 | + | ||
547 | + public void setCtrlopedepartment(String ctrlopedepartment) { | ||
548 | + this.ctrlopedepartment = ctrlopedepartment == null ? null : ctrlopedepartment.trim(); | ||
549 | + } | ||
550 | + | ||
551 | + public String getShprname() { | ||
552 | + return shprname; | ||
553 | + } | ||
554 | + | ||
555 | + public void setShprname(String shprname) { | ||
556 | + this.shprname = shprname == null ? null : shprname.trim(); | ||
557 | + } | ||
558 | + | ||
559 | + public String getShprmobiletype() { | ||
560 | + return shprmobiletype; | ||
561 | + } | ||
562 | + | ||
563 | + public void setShprmobiletype(String shprmobiletype) { | ||
564 | + this.shprmobiletype = shprmobiletype == null ? null : shprmobiletype.trim(); | ||
565 | + } | ||
566 | + | ||
567 | + public String getShprtel() { | ||
568 | + return shprtel; | ||
569 | + } | ||
570 | + | ||
571 | + public void setShprtel(String shprtel) { | ||
572 | + this.shprtel = shprtel == null ? null : shprtel.trim(); | ||
573 | + } | ||
574 | + | ||
575 | + public String getShpraddress() { | ||
576 | + return shpraddress; | ||
577 | + } | ||
578 | + | ||
579 | + public void setShpraddress(String shpraddress) { | ||
580 | + this.shpraddress = shpraddress == null ? null : shpraddress.trim(); | ||
581 | + } | ||
582 | + | ||
583 | + public String getShprcountyr() { | ||
584 | + return shprcountyr; | ||
585 | + } | ||
586 | + | ||
587 | + public void setShprcountyr(String shprcountyr) { | ||
588 | + this.shprcountyr = shprcountyr == null ? null : shprcountyr.trim(); | ||
589 | + } | ||
590 | + | ||
591 | + public String getShpcomid() { | ||
592 | + return shpcomid; | ||
593 | + } | ||
594 | + | ||
595 | + public void setShpcomid(String shpcomid) { | ||
596 | + this.shpcomid = shpcomid == null ? null : shpcomid.trim(); | ||
597 | + } | ||
598 | + | ||
599 | + public String getShpaeocode() { | ||
600 | + return shpaeocode; | ||
601 | + } | ||
602 | + | ||
603 | + public void setShpaeocode(String shpaeocode) { | ||
604 | + this.shpaeocode = shpaeocode == null ? null : shpaeocode.trim(); | ||
605 | + } | ||
606 | + | ||
607 | + public String getShpcustomerid() { | ||
608 | + return shpcustomerid; | ||
609 | + } | ||
610 | + | ||
611 | + public void setShpcustomerid(String shpcustomerid) { | ||
612 | + this.shpcustomerid = shpcustomerid == null ? null : shpcustomerid.trim(); | ||
613 | + } | ||
614 | + | ||
615 | + public String getCnsnname() { | ||
616 | + return cnsnname; | ||
617 | + } | ||
618 | + | ||
619 | + public void setCnsnname(String cnsnname) { | ||
620 | + this.cnsnname = cnsnname == null ? null : cnsnname.trim(); | ||
621 | + } | ||
622 | + | ||
623 | + public String getCnsrmobiletype() { | ||
624 | + return cnsrmobiletype; | ||
625 | + } | ||
626 | + | ||
627 | + public void setCnsrmobiletype(String cnsrmobiletype) { | ||
628 | + this.cnsrmobiletype = cnsrmobiletype == null ? null : cnsrmobiletype.trim(); | ||
629 | + } | ||
630 | + | ||
631 | + public String getCnsntel() { | ||
632 | + return cnsntel; | ||
633 | + } | ||
634 | + | ||
635 | + public void setCnsntel(String cnsntel) { | ||
636 | + this.cnsntel = cnsntel == null ? null : cnsntel.trim(); | ||
637 | + } | ||
638 | + | ||
639 | + public String getCnsnaddress() { | ||
640 | + return cnsnaddress; | ||
641 | + } | ||
642 | + | ||
643 | + public void setCnsnaddress(String cnsnaddress) { | ||
644 | + this.cnsnaddress = cnsnaddress == null ? null : cnsnaddress.trim(); | ||
645 | + } | ||
646 | + | ||
647 | + public String getCnscountyr() { | ||
648 | + return cnscountyr; | ||
649 | + } | ||
650 | + | ||
651 | + public void setCnscountyr(String cnscountyr) { | ||
652 | + this.cnscountyr = cnscountyr == null ? null : cnscountyr.trim(); | ||
653 | + } | ||
654 | + | ||
655 | + public String getCnscomid() { | ||
656 | + return cnscomid; | ||
657 | + } | ||
658 | + | ||
659 | + public void setCnscomid(String cnscomid) { | ||
660 | + this.cnscomid = cnscomid == null ? null : cnscomid.trim(); | ||
661 | + } | ||
662 | + | ||
663 | + public String getCnsaeocode() { | ||
664 | + return cnsaeocode; | ||
665 | + } | ||
666 | + | ||
667 | + public void setCnsaeocode(String cnsaeocode) { | ||
668 | + this.cnsaeocode = cnsaeocode == null ? null : cnsaeocode.trim(); | ||
669 | + } | ||
670 | + | ||
671 | + public String getCnsrctcname() { | ||
672 | + return cnsrctcname; | ||
673 | + } | ||
674 | + | ||
675 | + public void setCnsrctcname(String cnsrctcname) { | ||
676 | + this.cnsrctcname = cnsrctcname == null ? null : cnsrctcname.trim(); | ||
677 | + } | ||
678 | + | ||
679 | + public String getCnsrctctel() { | ||
680 | + return cnsrctctel; | ||
681 | + } | ||
682 | + | ||
683 | + public void setCnsrctctel(String cnsrctctel) { | ||
684 | + this.cnsrctctel = cnsrctctel == null ? null : cnsrctctel.trim(); | ||
685 | + } | ||
686 | + | ||
687 | + public String getCsgcustomerid() { | ||
688 | + return csgcustomerid; | ||
689 | + } | ||
690 | + | ||
691 | + public void setCsgcustomerid(String csgcustomerid) { | ||
692 | + this.csgcustomerid = csgcustomerid == null ? null : csgcustomerid.trim(); | ||
693 | + } | ||
694 | + | ||
695 | + public String getCollected() { | ||
696 | + return collected; | ||
697 | + } | ||
698 | + | ||
699 | + public void setCollected(String collected) { | ||
700 | + this.collected = collected == null ? null : collected.trim(); | ||
701 | + } | ||
702 | + | ||
703 | + public BigDecimal getExchagerate() { | ||
704 | + return exchagerate; | ||
705 | + } | ||
706 | + | ||
707 | + public void setExchagerate(BigDecimal exchagerate) { | ||
708 | + this.exchagerate = exchagerate; | ||
709 | + } | ||
710 | + | ||
711 | + public String getComat() { | ||
712 | + return comat; | ||
713 | + } | ||
714 | + | ||
715 | + public void setComat(String comat) { | ||
716 | + this.comat = comat == null ? null : comat.trim(); | ||
717 | + } | ||
718 | + | ||
719 | + public String getRefrigerated() { | ||
720 | + return refrigerated; | ||
721 | + } | ||
722 | + | ||
723 | + public void setRefrigerated(String refrigerated) { | ||
724 | + this.refrigerated = refrigerated == null ? null : refrigerated.trim(); | ||
725 | + } | ||
726 | + | ||
727 | + public BigDecimal getForknum() { | ||
728 | + return forknum; | ||
729 | + } | ||
730 | + | ||
731 | + public void setForknum(BigDecimal forknum) { | ||
732 | + this.forknum = forknum; | ||
733 | + } | ||
734 | + | ||
735 | + public String getWhshold() { | ||
736 | + return whshold; | ||
737 | + } | ||
738 | + | ||
739 | + public void setWhshold(String whshold) { | ||
740 | + this.whshold = whshold == null ? null : whshold.trim(); | ||
741 | + } | ||
742 | + | ||
743 | + public String getExpcusttransit() { | ||
744 | + return expcusttransit; | ||
745 | + } | ||
746 | + | ||
747 | + public void setExpcusttransit(String expcusttransit) { | ||
748 | + this.expcusttransit = expcusttransit == null ? null : expcusttransit.trim(); | ||
749 | + } | ||
750 | + | ||
751 | + public String getImpcusttransit() { | ||
752 | + return impcusttransit; | ||
753 | + } | ||
754 | + | ||
755 | + public void setImpcusttransit(String impcusttransit) { | ||
756 | + this.impcusttransit = impcusttransit == null ? null : impcusttransit.trim(); | ||
757 | + } | ||
758 | + | ||
759 | + public String getShorttrans() { | ||
760 | + return shorttrans; | ||
761 | + } | ||
762 | + | ||
763 | + public void setShorttrans(String shorttrans) { | ||
764 | + this.shorttrans = shorttrans == null ? null : shorttrans.trim(); | ||
765 | + } | ||
766 | + | ||
767 | + public String getShorttransbup() { | ||
768 | + return shorttransbup; | ||
769 | + } | ||
770 | + | ||
771 | + public void setShorttransbup(String shorttransbup) { | ||
772 | + this.shorttransbup = shorttransbup == null ? null : shorttransbup.trim(); | ||
773 | + } | ||
774 | + | ||
775 | + public String getCargoowner() { | ||
776 | + return cargoowner; | ||
777 | + } | ||
778 | + | ||
779 | + public void setCargoowner(String cargoowner) { | ||
780 | + this.cargoowner = cargoowner == null ? null : cargoowner.trim(); | ||
781 | + } | ||
782 | + | ||
783 | + public Date getChargetime() { | ||
784 | + return chargetime; | ||
785 | + } | ||
786 | + | ||
787 | + public void setChargetime(Date chargetime) { | ||
788 | + this.chargetime = chargetime; | ||
789 | + } | ||
790 | + | ||
791 | + public String getIsinstruction() { | ||
792 | + return isinstruction; | ||
793 | + } | ||
794 | + | ||
795 | + public void setIsinstruction(String isinstruction) { | ||
796 | + this.isinstruction = isinstruction == null ? null : isinstruction.trim(); | ||
797 | + } | ||
798 | + | ||
799 | + public String getNotify() { | ||
800 | + return notify; | ||
801 | + } | ||
802 | + | ||
803 | + public void setNotify(String notify) { | ||
804 | + this.notify = notify == null ? null : notify.trim(); | ||
805 | + } | ||
806 | + | ||
807 | + public BigDecimal getShippervalue() { | ||
808 | + return shippervalue; | ||
809 | + } | ||
810 | + | ||
811 | + public void setShippervalue(BigDecimal shippervalue) { | ||
812 | + this.shippervalue = shippervalue; | ||
813 | + } | ||
814 | + | ||
815 | + public BigDecimal getTrafficvalue() { | ||
816 | + return trafficvalue; | ||
817 | + } | ||
818 | + | ||
819 | + public void setTrafficvalue(BigDecimal trafficvalue) { | ||
820 | + this.trafficvalue = trafficvalue; | ||
821 | + } | ||
822 | + | ||
823 | + public BigDecimal getCustomvalue() { | ||
824 | + return customvalue; | ||
825 | + } | ||
826 | + | ||
827 | + public void setCustomvalue(BigDecimal customvalue) { | ||
828 | + this.customvalue = customvalue; | ||
829 | + } | ||
830 | + | ||
831 | + public BigDecimal getInsurevalue() { | ||
832 | + return insurevalue; | ||
833 | + } | ||
834 | + | ||
835 | + public void setInsurevalue(BigDecimal insurevalue) { | ||
836 | + this.insurevalue = insurevalue; | ||
837 | + } | ||
838 | + | ||
839 | + public String getFileattached() { | ||
840 | + return fileattached; | ||
841 | + } | ||
842 | + | ||
843 | + public void setFileattached(String fileattached) { | ||
844 | + this.fileattached = fileattached == null ? null : fileattached.trim(); | ||
845 | + } | ||
846 | + | ||
847 | + public String getRatetype() { | ||
848 | + return ratetype; | ||
849 | + } | ||
850 | + | ||
851 | + public void setRatetype(String ratetype) { | ||
852 | + this.ratetype = ratetype == null ? null : ratetype.trim(); | ||
853 | + } | ||
854 | + | ||
855 | + public String getProcessingmethod() { | ||
856 | + return processingmethod; | ||
857 | + } | ||
858 | + | ||
859 | + public void setProcessingmethod(String processingmethod) { | ||
860 | + this.processingmethod = processingmethod == null ? null : processingmethod.trim(); | ||
861 | + } | ||
862 | + | ||
863 | + public String getHandlingcircs() { | ||
864 | + return handlingcircs; | ||
865 | + } | ||
866 | + | ||
867 | + public void setHandlingcircs(String handlingcircs) { | ||
868 | + this.handlingcircs = handlingcircs == null ? null : handlingcircs.trim(); | ||
869 | + } | ||
870 | + | ||
871 | + public String getReservedtonnage() { | ||
872 | + return reservedtonnage; | ||
873 | + } | ||
874 | + | ||
875 | + public void setReservedtonnage(String reservedtonnage) { | ||
876 | + this.reservedtonnage = reservedtonnage == null ? null : reservedtonnage.trim(); | ||
877 | + } | ||
878 | + | ||
879 | + public BigDecimal getCarriage() { | ||
880 | + return carriage; | ||
881 | + } | ||
882 | + | ||
883 | + public void setCarriage(BigDecimal carriage) { | ||
884 | + this.carriage = carriage; | ||
885 | + } | ||
886 | + | ||
887 | + public BigDecimal getRate() { | ||
888 | + return rate; | ||
889 | + } | ||
890 | + | ||
891 | + public void setRate(BigDecimal rate) { | ||
892 | + this.rate = rate; | ||
893 | + } | ||
894 | + | ||
895 | + public String getCrtoper() { | ||
896 | + return crtoper; | ||
897 | + } | ||
898 | + | ||
899 | + public void setCrtoper(String crtoper) { | ||
900 | + this.crtoper = crtoper == null ? null : crtoper.trim(); | ||
901 | + } | ||
902 | + | ||
903 | + public String getWtunit() { | ||
904 | + return wtunit; | ||
905 | + } | ||
906 | + | ||
907 | + public void setWtunit(String wtunit) { | ||
908 | + this.wtunit = wtunit == null ? null : wtunit.trim(); | ||
909 | + } | ||
910 | + | ||
911 | + public BigDecimal getOriginalwt() { | ||
912 | + return originalwt; | ||
913 | + } | ||
914 | + | ||
915 | + public void setOriginalwt(BigDecimal originalwt) { | ||
916 | + this.originalwt = originalwt; | ||
917 | + } | ||
918 | + | ||
919 | + public BigDecimal getOriginalfeewt() { | ||
920 | + return originalfeewt; | ||
921 | + } | ||
922 | + | ||
923 | + public void setOriginalfeewt(BigDecimal originalfeewt) { | ||
924 | + this.originalfeewt = originalfeewt; | ||
925 | + } | ||
926 | + | ||
927 | + public String getVolunit() { | ||
928 | + return volunit; | ||
929 | + } | ||
930 | + | ||
931 | + public void setVolunit(String volunit) { | ||
932 | + this.volunit = volunit == null ? null : volunit.trim(); | ||
933 | + } | ||
934 | + | ||
935 | + public String getCurrencyid() { | ||
936 | + return currencyid; | ||
937 | + } | ||
938 | + | ||
939 | + public void setCurrencyid(String currencyid) { | ||
940 | + this.currencyid = currencyid == null ? null : currencyid.trim(); | ||
941 | + } | ||
942 | + | ||
943 | + public BigDecimal getOriginalvol() { | ||
944 | + return originalvol; | ||
945 | + } | ||
946 | + | ||
947 | + public void setOriginalvol(BigDecimal originalvol) { | ||
948 | + this.originalvol = originalvol; | ||
949 | + } | ||
950 | + | ||
951 | + public Date getCrtopetime() { | ||
952 | + return crtopetime; | ||
953 | + } | ||
954 | + | ||
955 | + public void setCrtopetime(Date crtopetime) { | ||
956 | + this.crtopetime = crtopetime; | ||
957 | + } | ||
958 | + | ||
959 | + public String getDlvpriority() { | ||
960 | + return dlvpriority; | ||
961 | + } | ||
962 | + | ||
963 | + public void setDlvpriority(String dlvpriority) { | ||
964 | + this.dlvpriority = dlvpriority == null ? null : dlvpriority.trim(); | ||
965 | + } | ||
966 | + | ||
967 | + public String getChked() { | ||
968 | + return chked; | ||
969 | + } | ||
970 | + | ||
971 | + public void setChked(String chked) { | ||
972 | + this.chked = chked == null ? null : chked.trim(); | ||
973 | + } | ||
974 | + | ||
975 | + public Short getLabelnum() { | ||
976 | + return labelnum; | ||
977 | + } | ||
978 | + | ||
979 | + public void setLabelnum(Short labelnum) { | ||
980 | + this.labelnum = labelnum; | ||
981 | + } | ||
982 | + | ||
983 | + public String getShpcustomer() { | ||
984 | + return shpcustomer; | ||
985 | + } | ||
986 | + | ||
987 | + public void setShpcustomer(String shpcustomer) { | ||
988 | + this.shpcustomer = shpcustomer == null ? null : shpcustomer.trim(); | ||
989 | + } | ||
990 | + | ||
991 | + public String getCrtagent() { | ||
992 | + return crtagent; | ||
993 | + } | ||
994 | + | ||
995 | + public void setCrtagent(String crtagent) { | ||
996 | + this.crtagent = crtagent == null ? null : crtagent.trim(); | ||
997 | + } | ||
998 | + | ||
999 | + public Date getCrtdate() { | ||
1000 | + return crtdate; | ||
1001 | + } | ||
1002 | + | ||
1003 | + public void setCrtdate(Date crtdate) { | ||
1004 | + this.crtdate = crtdate; | ||
1005 | + } | ||
1006 | + | ||
1007 | + public BigDecimal getExtraweight() { | ||
1008 | + return extraweight; | ||
1009 | + } | ||
1010 | + | ||
1011 | + public void setExtraweight(BigDecimal extraweight) { | ||
1012 | + this.extraweight = extraweight; | ||
1013 | + } | ||
1014 | + | ||
1015 | + public String getStoreremark() { | ||
1016 | + return storeremark; | ||
1017 | + } | ||
1018 | + | ||
1019 | + public void setStoreremark(String storeremark) { | ||
1020 | + this.storeremark = storeremark == null ? null : storeremark.trim(); | ||
1021 | + } | ||
1022 | + | ||
1023 | + public String getBalanceremark() { | ||
1024 | + return balanceremark; | ||
1025 | + } | ||
1026 | + | ||
1027 | + public void setBalanceremark(String balanceremark) { | ||
1028 | + this.balanceremark = balanceremark == null ? null : balanceremark.trim(); | ||
1029 | + } | ||
1030 | + | ||
1031 | + public String getFilechked() { | ||
1032 | + return filechked; | ||
1033 | + } | ||
1034 | + | ||
1035 | + public void setFilechked(String filechked) { | ||
1036 | + this.filechked = filechked == null ? null : filechked.trim(); | ||
1037 | + } | ||
1038 | + | ||
1039 | + public String getIscarbalance() { | ||
1040 | + return iscarbalance; | ||
1041 | + } | ||
1042 | + | ||
1043 | + public void setIscarbalance(String iscarbalance) { | ||
1044 | + this.iscarbalance = iscarbalance == null ? null : iscarbalance.trim(); | ||
1045 | + } | ||
1046 | + | ||
1047 | + public String getCnsnidcard() { | ||
1048 | + return cnsnidcard; | ||
1049 | + } | ||
1050 | + | ||
1051 | + public void setCnsnidcard(String cnsnidcard) { | ||
1052 | + this.cnsnidcard = cnsnidcard == null ? null : cnsnidcard.trim(); | ||
1053 | + } | ||
1054 | + | ||
1055 | + public String getCiqcheck() { | ||
1056 | + return ciqcheck; | ||
1057 | + } | ||
1058 | + | ||
1059 | + public void setCiqcheck(String ciqcheck) { | ||
1060 | + this.ciqcheck = ciqcheck == null ? null : ciqcheck.trim(); | ||
1061 | + } | ||
1062 | + | ||
1063 | + public String getTmpbillno() { | ||
1064 | + return tmpbillno; | ||
1065 | + } | ||
1066 | + | ||
1067 | + public void setTmpbillno(String tmpbillno) { | ||
1068 | + this.tmpbillno = tmpbillno == null ? null : tmpbillno.trim(); | ||
1069 | + } | ||
1070 | + | ||
1071 | + public String getSubbillid() { | ||
1072 | + return subbillid; | ||
1073 | + } | ||
1074 | + | ||
1075 | + public void setSubbillid(String subbillid) { | ||
1076 | + this.subbillid = subbillid == null ? null : subbillid.trim(); | ||
1077 | + } | ||
1078 | + | ||
1079 | + public String getIstrans() { | ||
1080 | + return istrans; | ||
1081 | + } | ||
1082 | + | ||
1083 | + public void setIstrans(String istrans) { | ||
1084 | + this.istrans = istrans == null ? null : istrans.trim(); | ||
1085 | + } | ||
1086 | + | ||
1087 | + public String getSplittag() { | ||
1088 | + return splittag; | ||
1089 | + } | ||
1090 | + | ||
1091 | + public void setSplittag(String splittag) { | ||
1092 | + this.splittag = splittag == null ? null : splittag.trim(); | ||
1093 | + } | ||
1094 | + | ||
1095 | + public String getCustomstrans() { | ||
1096 | + return customstrans; | ||
1097 | + } | ||
1098 | + | ||
1099 | + public void setCustomstrans(String customstrans) { | ||
1100 | + this.customstrans = customstrans == null ? null : customstrans.trim(); | ||
1101 | + } | ||
1102 | + | ||
1103 | + public String getEndoper() { | ||
1104 | + return endoper; | ||
1105 | + } | ||
1106 | + | ||
1107 | + public void setEndoper(String endoper) { | ||
1108 | + this.endoper = endoper == null ? null : endoper.trim(); | ||
1109 | + } | ||
1110 | + | ||
1111 | + public Date getEndopetime() { | ||
1112 | + return endopetime; | ||
1113 | + } | ||
1114 | + | ||
1115 | + public void setEndopetime(Date endopetime) { | ||
1116 | + this.endopetime = endopetime; | ||
1117 | + } | ||
1118 | + | ||
1119 | + public String getConfirmoper() { | ||
1120 | + return confirmoper; | ||
1121 | + } | ||
1122 | + | ||
1123 | + public void setConfirmoper(String confirmoper) { | ||
1124 | + this.confirmoper = confirmoper == null ? null : confirmoper.trim(); | ||
1125 | + } | ||
1126 | + | ||
1127 | + public Date getConfirmopetime() { | ||
1128 | + return confirmopetime; | ||
1129 | + } | ||
1130 | + | ||
1131 | + public void setConfirmopetime(Date confirmopetime) { | ||
1132 | + this.confirmopetime = confirmopetime; | ||
1133 | + } | ||
1134 | + | ||
1135 | + public String getCsgcustomer() { | ||
1136 | + return csgcustomer; | ||
1137 | + } | ||
1138 | + | ||
1139 | + public void setCsgcustomer(String csgcustomer) { | ||
1140 | + this.csgcustomer = csgcustomer == null ? null : csgcustomer.trim(); | ||
1141 | + } | ||
1142 | + | ||
1143 | + public String getRelationbillid() { | ||
1144 | + return relationbillid; | ||
1145 | + } | ||
1146 | + | ||
1147 | + public void setRelationbillid(String relationbillid) { | ||
1148 | + this.relationbillid = relationbillid == null ? null : relationbillid.trim(); | ||
1149 | + } | ||
1150 | + | ||
1151 | + public String getCustomsCountry() { | ||
1152 | + return customsCountry; | ||
1153 | + } | ||
1154 | + | ||
1155 | + public void setCustomsCountry(String customsCountry) { | ||
1156 | + this.customsCountry = customsCountry == null ? null : customsCountry.trim(); | ||
1157 | + } | ||
1158 | + | ||
1159 | + public String getCustomsCity() { | ||
1160 | + return customsCity; | ||
1161 | + } | ||
1162 | + | ||
1163 | + public void setCustomsCity(String customsCity) { | ||
1164 | + this.customsCity = customsCity == null ? null : customsCity.trim(); | ||
1165 | + } | ||
1166 | + | ||
1167 | + public String getCustomsRemark() { | ||
1168 | + return customsRemark; | ||
1169 | + } | ||
1170 | + | ||
1171 | + public void setCustomsRemark(String customsRemark) { | ||
1172 | + this.customsRemark = customsRemark == null ? null : customsRemark.trim(); | ||
1173 | + } | ||
1174 | + | ||
1175 | + public String getCargosource() { | ||
1176 | + return cargosource; | ||
1177 | + } | ||
1178 | + | ||
1179 | + public void setCargosource(String cargosource) { | ||
1180 | + this.cargosource = cargosource == null ? null : cargosource.trim(); | ||
1181 | + } | ||
1182 | + | ||
1183 | + public String getCargonmch() { | ||
1184 | + return cargonmch; | ||
1185 | + } | ||
1186 | + | ||
1187 | + public void setCargonmch(String cargonmch) { | ||
1188 | + this.cargonmch = cargonmch == null ? null : cargonmch.trim(); | ||
1189 | + } | ||
1190 | + | ||
1191 | + public String getIsdgr() { | ||
1192 | + return isdgr; | ||
1193 | + } | ||
1194 | + | ||
1195 | + public void setIsdgr(String isdgr) { | ||
1196 | + this.isdgr = isdgr == null ? null : isdgr.trim(); | ||
1197 | + } | ||
1198 | + | ||
1199 | + public BigDecimal getPercent() { | ||
1200 | + return percent; | ||
1201 | + } | ||
1202 | + | ||
1203 | + public void setPercent(BigDecimal percent) { | ||
1204 | + this.percent = percent; | ||
1205 | + } | ||
1206 | + | ||
1207 | + public String getAwbtype() { | ||
1208 | + return awbtype; | ||
1209 | + } | ||
1210 | + | ||
1211 | + public void setAwbtype(String awbtype) { | ||
1212 | + this.awbtype = awbtype == null ? null : awbtype.trim(); | ||
1213 | + } | ||
1214 | + | ||
1215 | + public String getStatus() { | ||
1216 | + return status; | ||
1217 | + } | ||
1218 | + | ||
1219 | + public void setStatus(String status) { | ||
1220 | + this.status = status == null ? null : status.trim(); | ||
1221 | + } | ||
1222 | + | ||
1223 | + public String getPaymodel() { | ||
1224 | + return paymodel; | ||
1225 | + } | ||
1226 | + | ||
1227 | + public void setPaymodel(String paymodel) { | ||
1228 | + this.paymodel = paymodel == null ? null : paymodel.trim(); | ||
1229 | + } | ||
1230 | + | ||
1231 | + public Boolean getIsdelete() { | ||
1232 | + return isdelete; | ||
1233 | + } | ||
1234 | + | ||
1235 | + public void setIsdelete(Boolean isdelete) { | ||
1236 | + this.isdelete = isdelete; | ||
1237 | + } | ||
1238 | + | ||
1239 | + public Date getOptime() { | ||
1240 | + return optime; | ||
1241 | + } | ||
1242 | + | ||
1243 | + public void setOptime(Date optime) { | ||
1244 | + this.optime = optime; | ||
1245 | + } | ||
1246 | +} |
1 | +package com.sunyo.wlpt.base.model; | ||
2 | + | ||
3 | +public class CONFIG_AIRSTATION_CUSTOMCODE { | ||
4 | + private String airstationname; | ||
5 | + | ||
6 | + private String customcode; | ||
7 | + | ||
8 | + public String getAirstationname() { | ||
9 | + return airstationname; | ||
10 | + } | ||
11 | + | ||
12 | + public void setAirstationname(String airstationname) { | ||
13 | + this.airstationname = airstationname == null ? null : airstationname.trim(); | ||
14 | + } | ||
15 | + | ||
16 | + public String getCustomcode() { | ||
17 | + return customcode; | ||
18 | + } | ||
19 | + | ||
20 | + public void setCustomcode(String customcode) { | ||
21 | + this.customcode = customcode == null ? null : customcode.trim(); | ||
22 | + } | ||
23 | +} |
1 | +package com.sunyo.wlpt.base.model; | ||
2 | + | ||
3 | +public class CONFIG_USER_CARRIER { | ||
4 | + private Integer userid; | ||
5 | + | ||
6 | + private String carriercode; | ||
7 | + | ||
8 | + public Integer getUserid() { | ||
9 | + return userid; | ||
10 | + } | ||
11 | + | ||
12 | + public void setUserid(Integer userid) { | ||
13 | + this.userid = userid; | ||
14 | + } | ||
15 | + | ||
16 | + public String getCarriercode() { | ||
17 | + return carriercode; | ||
18 | + } | ||
19 | + | ||
20 | + public void setCarriercode(String carriercode) { | ||
21 | + this.carriercode = carriercode == null ? null : carriercode.trim(); | ||
22 | + } | ||
23 | +} |
1 | +package com.sunyo.wlpt.base.model; | ||
2 | + | ||
3 | +public class CONFIG_USER_CUSTOMCODE { | ||
4 | + private Integer userid; | ||
5 | + | ||
6 | + private String customcode; | ||
7 | + | ||
8 | + public Integer getUserid() { | ||
9 | + return userid; | ||
10 | + } | ||
11 | + | ||
12 | + public void setUserid(Integer userid) { | ||
13 | + this.userid = userid; | ||
14 | + } | ||
15 | + | ||
16 | + public String getCustomcode() { | ||
17 | + return customcode; | ||
18 | + } | ||
19 | + | ||
20 | + public void setCustomcode(String customcode) { | ||
21 | + this.customcode = customcode == null ? null : customcode.trim(); | ||
22 | + } | ||
23 | +} |
1 | +package com.sunyo.wlpt.base.model; | ||
2 | + | ||
3 | +public class CONFIG_USER_EnterpriseCode { | ||
4 | + private Integer userid; | ||
5 | + | ||
6 | + private String enterprisecode; | ||
7 | + | ||
8 | + public Integer getUserid() { | ||
9 | + return userid; | ||
10 | + } | ||
11 | + | ||
12 | + public void setUserid(Integer userid) { | ||
13 | + this.userid = userid; | ||
14 | + } | ||
15 | + | ||
16 | + public String getEnterprisecode() { | ||
17 | + return enterprisecode; | ||
18 | + } | ||
19 | + | ||
20 | + public void setEnterprisecode(String enterprisecode) { | ||
21 | + this.enterprisecode = enterprisecode == null ? null : enterprisecode.trim(); | ||
22 | + } | ||
23 | +} |
1 | +package com.sunyo.wlpt.base.model; | ||
2 | + | ||
3 | +import java.util.Date; | ||
4 | + | ||
5 | +public class NMMS_CUSTOM_MT1201 { | ||
6 | + private String uuid; | ||
7 | + | ||
8 | + private String awba; | ||
9 | + | ||
10 | + private String awbh; | ||
11 | + | ||
12 | + private String customcode; | ||
13 | + | ||
14 | + private String goodsname; | ||
15 | + | ||
16 | + private Date actime; | ||
17 | + | ||
18 | + private String carrier; | ||
19 | + | ||
20 | + private String flightno; | ||
21 | + | ||
22 | + private Date flightdate; | ||
23 | + | ||
24 | + private String originstation; | ||
25 | + | ||
26 | + private String destinationstation; | ||
27 | + | ||
28 | + private Integer piece; | ||
29 | + | ||
30 | + private Long weight; | ||
31 | + | ||
32 | + private String splitcode; | ||
33 | + | ||
34 | + private String status; | ||
35 | + | ||
36 | + private Boolean isdelete; | ||
37 | + | ||
38 | + private String uldtype; | ||
39 | + | ||
40 | + private String uldno; | ||
41 | + | ||
42 | + private String planeno; | ||
43 | + | ||
44 | + private String opeuserid; | ||
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 getAwba() { | ||
57 | + return awba; | ||
58 | + } | ||
59 | + | ||
60 | + public void setAwba(String awba) { | ||
61 | + this.awba = awba == null ? null : awba.trim(); | ||
62 | + } | ||
63 | + | ||
64 | + public String getAwbh() { | ||
65 | + return awbh; | ||
66 | + } | ||
67 | + | ||
68 | + public void setAwbh(String awbh) { | ||
69 | + this.awbh = awbh == null ? null : awbh.trim(); | ||
70 | + } | ||
71 | + | ||
72 | + public String getCustomcode() { | ||
73 | + return customcode; | ||
74 | + } | ||
75 | + | ||
76 | + public void setCustomcode(String customcode) { | ||
77 | + this.customcode = customcode == null ? null : customcode.trim(); | ||
78 | + } | ||
79 | + | ||
80 | + public String getGoodsname() { | ||
81 | + return goodsname; | ||
82 | + } | ||
83 | + | ||
84 | + public void setGoodsname(String goodsname) { | ||
85 | + this.goodsname = goodsname == null ? null : goodsname.trim(); | ||
86 | + } | ||
87 | + | ||
88 | + public Date getActime() { | ||
89 | + return actime; | ||
90 | + } | ||
91 | + | ||
92 | + public void setActime(Date actime) { | ||
93 | + this.actime = actime; | ||
94 | + } | ||
95 | + | ||
96 | + public String getCarrier() { | ||
97 | + return carrier; | ||
98 | + } | ||
99 | + | ||
100 | + public void setCarrier(String carrier) { | ||
101 | + this.carrier = carrier == null ? null : carrier.trim(); | ||
102 | + } | ||
103 | + | ||
104 | + public String getFlightno() { | ||
105 | + return flightno; | ||
106 | + } | ||
107 | + | ||
108 | + public void setFlightno(String flightno) { | ||
109 | + this.flightno = flightno == null ? null : flightno.trim(); | ||
110 | + } | ||
111 | + | ||
112 | + public Date getFlightdate() { | ||
113 | + return flightdate; | ||
114 | + } | ||
115 | + | ||
116 | + public void setFlightdate(Date flightdate) { | ||
117 | + this.flightdate = flightdate; | ||
118 | + } | ||
119 | + | ||
120 | + public String getOriginstation() { | ||
121 | + return originstation; | ||
122 | + } | ||
123 | + | ||
124 | + public void setOriginstation(String originstation) { | ||
125 | + this.originstation = originstation == null ? null : originstation.trim(); | ||
126 | + } | ||
127 | + | ||
128 | + public String getDestinationstation() { | ||
129 | + return destinationstation; | ||
130 | + } | ||
131 | + | ||
132 | + public void setDestinationstation(String destinationstation) { | ||
133 | + this.destinationstation = destinationstation == null ? null : destinationstation.trim(); | ||
134 | + } | ||
135 | + | ||
136 | + public Integer getPiece() { | ||
137 | + return piece; | ||
138 | + } | ||
139 | + | ||
140 | + public void setPiece(Integer piece) { | ||
141 | + this.piece = piece; | ||
142 | + } | ||
143 | + | ||
144 | + public Long getWeight() { | ||
145 | + return weight; | ||
146 | + } | ||
147 | + | ||
148 | + public void setWeight(Long weight) { | ||
149 | + this.weight = weight; | ||
150 | + } | ||
151 | + | ||
152 | + public String getSplitcode() { | ||
153 | + return splitcode; | ||
154 | + } | ||
155 | + | ||
156 | + public void setSplitcode(String splitcode) { | ||
157 | + this.splitcode = splitcode == null ? null : splitcode.trim(); | ||
158 | + } | ||
159 | + | ||
160 | + public String getStatus() { | ||
161 | + return status; | ||
162 | + } | ||
163 | + | ||
164 | + public void setStatus(String status) { | ||
165 | + this.status = status == null ? null : status.trim(); | ||
166 | + } | ||
167 | + | ||
168 | + public Boolean getIsdelete() { | ||
169 | + return isdelete; | ||
170 | + } | ||
171 | + | ||
172 | + public void setIsdelete(Boolean isdelete) { | ||
173 | + this.isdelete = isdelete; | ||
174 | + } | ||
175 | + | ||
176 | + public String getUldtype() { | ||
177 | + return uldtype; | ||
178 | + } | ||
179 | + | ||
180 | + public void setUldtype(String uldtype) { | ||
181 | + this.uldtype = uldtype == null ? null : uldtype.trim(); | ||
182 | + } | ||
183 | + | ||
184 | + public String getUldno() { | ||
185 | + return uldno; | ||
186 | + } | ||
187 | + | ||
188 | + public void setUldno(String uldno) { | ||
189 | + this.uldno = uldno == null ? null : uldno.trim(); | ||
190 | + } | ||
191 | + | ||
192 | + public String getPlaneno() { | ||
193 | + return planeno; | ||
194 | + } | ||
195 | + | ||
196 | + public void setPlaneno(String planeno) { | ||
197 | + this.planeno = planeno == null ? null : planeno.trim(); | ||
198 | + } | ||
199 | + | ||
200 | + public String getOpeuserid() { | ||
201 | + return opeuserid; | ||
202 | + } | ||
203 | + | ||
204 | + public void setOpeuserid(String opeuserid) { | ||
205 | + this.opeuserid = opeuserid == null ? null : opeuserid.trim(); | ||
206 | + } | ||
207 | + | ||
208 | + public String getExt5() { | ||
209 | + return ext5; | ||
210 | + } | ||
211 | + | ||
212 | + public void setExt5(String ext5) { | ||
213 | + this.ext5 = ext5 == null ? null : ext5.trim(); | ||
214 | + } | ||
215 | +} |
1 | +package com.sunyo.wlpt.base.model; | ||
2 | + | ||
3 | +import java.util.Date; | ||
4 | + | ||
5 | +public class NMMS_CUSTOM_MT2201 { | ||
6 | + private String uuid; | ||
7 | + | ||
8 | + private String awba; | ||
9 | + | ||
10 | + private String awbh; | ||
11 | + | ||
12 | + private String customcode; | ||
13 | + | ||
14 | + private String goodsname; | ||
15 | + | ||
16 | + private Date actime; | ||
17 | + | ||
18 | + private String carrier; | ||
19 | + | ||
20 | + private String flightno; | ||
21 | + | ||
22 | + private Date flightdate; | ||
23 | + | ||
24 | + private String originstation; | ||
25 | + | ||
26 | + private String destinationstation; | ||
27 | + | ||
28 | + private Integer piece; | ||
29 | + | ||
30 | + private Long weight; | ||
31 | + | ||
32 | + private String splitcode; | ||
33 | + | ||
34 | + private String status; | ||
35 | + | ||
36 | + private String offload; | ||
37 | + | ||
38 | + private String offloaduuid; | ||
39 | + | ||
40 | + private Boolean isdelete; | ||
41 | + | ||
42 | + private String customtype; | ||
43 | + | ||
44 | + private String ext2; | ||
45 | + | ||
46 | + private String ext3; | ||
47 | + | ||
48 | + private String ext4; | ||
49 | + | ||
50 | + private String ext5; | ||
51 | + | ||
52 | + public String getUuid() { | ||
53 | + return uuid; | ||
54 | + } | ||
55 | + | ||
56 | + public void setUuid(String uuid) { | ||
57 | + this.uuid = uuid == null ? null : uuid.trim(); | ||
58 | + } | ||
59 | + | ||
60 | + public String getAwba() { | ||
61 | + return awba; | ||
62 | + } | ||
63 | + | ||
64 | + public void setAwba(String awba) { | ||
65 | + this.awba = awba == null ? null : awba.trim(); | ||
66 | + } | ||
67 | + | ||
68 | + public String getAwbh() { | ||
69 | + return awbh; | ||
70 | + } | ||
71 | + | ||
72 | + public void setAwbh(String awbh) { | ||
73 | + this.awbh = awbh == null ? null : awbh.trim(); | ||
74 | + } | ||
75 | + | ||
76 | + public String getCustomcode() { | ||
77 | + return customcode; | ||
78 | + } | ||
79 | + | ||
80 | + public void setCustomcode(String customcode) { | ||
81 | + this.customcode = customcode == null ? null : customcode.trim(); | ||
82 | + } | ||
83 | + | ||
84 | + public String getGoodsname() { | ||
85 | + return goodsname; | ||
86 | + } | ||
87 | + | ||
88 | + public void setGoodsname(String goodsname) { | ||
89 | + this.goodsname = goodsname == null ? null : goodsname.trim(); | ||
90 | + } | ||
91 | + | ||
92 | + public Date getActime() { | ||
93 | + return actime; | ||
94 | + } | ||
95 | + | ||
96 | + public void setActime(Date actime) { | ||
97 | + this.actime = actime; | ||
98 | + } | ||
99 | + | ||
100 | + public String getCarrier() { | ||
101 | + return carrier; | ||
102 | + } | ||
103 | + | ||
104 | + public void setCarrier(String carrier) { | ||
105 | + this.carrier = carrier == null ? null : carrier.trim(); | ||
106 | + } | ||
107 | + | ||
108 | + public String getFlightno() { | ||
109 | + return flightno; | ||
110 | + } | ||
111 | + | ||
112 | + public void setFlightno(String flightno) { | ||
113 | + this.flightno = flightno == null ? null : flightno.trim(); | ||
114 | + } | ||
115 | + | ||
116 | + public Date getFlightdate() { | ||
117 | + return flightdate; | ||
118 | + } | ||
119 | + | ||
120 | + public void setFlightdate(Date flightdate) { | ||
121 | + this.flightdate = flightdate; | ||
122 | + } | ||
123 | + | ||
124 | + public String getOriginstation() { | ||
125 | + return originstation; | ||
126 | + } | ||
127 | + | ||
128 | + public void setOriginstation(String originstation) { | ||
129 | + this.originstation = originstation == null ? null : originstation.trim(); | ||
130 | + } | ||
131 | + | ||
132 | + public String getDestinationstation() { | ||
133 | + return destinationstation; | ||
134 | + } | ||
135 | + | ||
136 | + public void setDestinationstation(String destinationstation) { | ||
137 | + this.destinationstation = destinationstation == null ? null : destinationstation.trim(); | ||
138 | + } | ||
139 | + | ||
140 | + public Integer getPiece() { | ||
141 | + return piece; | ||
142 | + } | ||
143 | + | ||
144 | + public void setPiece(Integer piece) { | ||
145 | + this.piece = piece; | ||
146 | + } | ||
147 | + | ||
148 | + public Long getWeight() { | ||
149 | + return weight; | ||
150 | + } | ||
151 | + | ||
152 | + public void setWeight(Long weight) { | ||
153 | + this.weight = weight; | ||
154 | + } | ||
155 | + | ||
156 | + public String getSplitcode() { | ||
157 | + return splitcode; | ||
158 | + } | ||
159 | + | ||
160 | + public void setSplitcode(String splitcode) { | ||
161 | + this.splitcode = splitcode == null ? null : splitcode.trim(); | ||
162 | + } | ||
163 | + | ||
164 | + public String getStatus() { | ||
165 | + return status; | ||
166 | + } | ||
167 | + | ||
168 | + public void setStatus(String status) { | ||
169 | + this.status = status == null ? null : status.trim(); | ||
170 | + } | ||
171 | + | ||
172 | + public String getOffload() { | ||
173 | + return offload; | ||
174 | + } | ||
175 | + | ||
176 | + public void setOffload(String offload) { | ||
177 | + this.offload = offload == null ? null : offload.trim(); | ||
178 | + } | ||
179 | + | ||
180 | + public String getOffloaduuid() { | ||
181 | + return offloaduuid; | ||
182 | + } | ||
183 | + | ||
184 | + public void setOffloaduuid(String offloaduuid) { | ||
185 | + this.offloaduuid = offloaduuid == null ? null : offloaduuid.trim(); | ||
186 | + } | ||
187 | + | ||
188 | + public Boolean getIsdelete() { | ||
189 | + return isdelete; | ||
190 | + } | ||
191 | + | ||
192 | + public void setIsdelete(Boolean isdelete) { | ||
193 | + this.isdelete = isdelete; | ||
194 | + } | ||
195 | + | ||
196 | + public String getCustomtype() { | ||
197 | + return customtype; | ||
198 | + } | ||
199 | + | ||
200 | + public void setCustomtype(String customtype) { | ||
201 | + this.customtype = customtype == null ? null : customtype.trim(); | ||
202 | + } | ||
203 | + | ||
204 | + public String getExt2() { | ||
205 | + return ext2; | ||
206 | + } | ||
207 | + | ||
208 | + public void setExt2(String ext2) { | ||
209 | + this.ext2 = ext2 == null ? null : ext2.trim(); | ||
210 | + } | ||
211 | + | ||
212 | + public String getExt3() { | ||
213 | + return ext3; | ||
214 | + } | ||
215 | + | ||
216 | + public void setExt3(String ext3) { | ||
217 | + this.ext3 = ext3 == null ? null : ext3.trim(); | ||
218 | + } | ||
219 | + | ||
220 | + public String getExt4() { | ||
221 | + return ext4; | ||
222 | + } | ||
223 | + | ||
224 | + public void setExt4(String ext4) { | ||
225 | + this.ext4 = ext4 == null ? null : ext4.trim(); | ||
226 | + } | ||
227 | + | ||
228 | + public String getExt5() { | ||
229 | + return ext5; | ||
230 | + } | ||
231 | + | ||
232 | + public void setExt5(String ext5) { | ||
233 | + this.ext5 = ext5 == null ? null : ext5.trim(); | ||
234 | + } | ||
235 | +} |
1 | +package com.sunyo.wlpt.base.model; | ||
2 | + | ||
3 | +import java.util.Date; | ||
4 | + | ||
5 | +public class NMMS_CUSTOM_MT3201 { | ||
6 | + private String uuid; | ||
7 | + | ||
8 | + private String awba; | ||
9 | + | ||
10 | + private String awbh; | ||
11 | + | ||
12 | + private String carrier; | ||
13 | + | ||
14 | + private String flightno; | ||
15 | + | ||
16 | + private Date flightdate; | ||
17 | + | ||
18 | + private String originstation; | ||
19 | + | ||
20 | + private String destinationstation; | ||
21 | + | ||
22 | + private Integer piece; | ||
23 | + | ||
24 | + private Long weight; | ||
25 | + | ||
26 | + private Date arrivetime; | ||
27 | + | ||
28 | + private String customcode; | ||
29 | + | ||
30 | + private String goodsname; | ||
31 | + | ||
32 | + private Date actime; | ||
33 | + | ||
34 | + private String status; | ||
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 getAwba() { | ||
57 | + return awba; | ||
58 | + } | ||
59 | + | ||
60 | + public void setAwba(String awba) { | ||
61 | + this.awba = awba == null ? null : awba.trim(); | ||
62 | + } | ||
63 | + | ||
64 | + public String getAwbh() { | ||
65 | + return awbh; | ||
66 | + } | ||
67 | + | ||
68 | + public void setAwbh(String awbh) { | ||
69 | + this.awbh = awbh == null ? null : awbh.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 getOriginstation() { | ||
97 | + return originstation; | ||
98 | + } | ||
99 | + | ||
100 | + public void setOriginstation(String originstation) { | ||
101 | + this.originstation = originstation == null ? null : originstation.trim(); | ||
102 | + } | ||
103 | + | ||
104 | + public String getDestinationstation() { | ||
105 | + return destinationstation; | ||
106 | + } | ||
107 | + | ||
108 | + public void setDestinationstation(String destinationstation) { | ||
109 | + this.destinationstation = destinationstation == null ? null : destinationstation.trim(); | ||
110 | + } | ||
111 | + | ||
112 | + public Integer getPiece() { | ||
113 | + return piece; | ||
114 | + } | ||
115 | + | ||
116 | + public void setPiece(Integer piece) { | ||
117 | + this.piece = piece; | ||
118 | + } | ||
119 | + | ||
120 | + public Long getWeight() { | ||
121 | + return weight; | ||
122 | + } | ||
123 | + | ||
124 | + public void setWeight(Long weight) { | ||
125 | + this.weight = weight; | ||
126 | + } | ||
127 | + | ||
128 | + public Date getArrivetime() { | ||
129 | + return arrivetime; | ||
130 | + } | ||
131 | + | ||
132 | + public void setArrivetime(Date arrivetime) { | ||
133 | + this.arrivetime = arrivetime; | ||
134 | + } | ||
135 | + | ||
136 | + public String getCustomcode() { | ||
137 | + return customcode; | ||
138 | + } | ||
139 | + | ||
140 | + public void setCustomcode(String customcode) { | ||
141 | + this.customcode = customcode == null ? null : customcode.trim(); | ||
142 | + } | ||
143 | + | ||
144 | + public String getGoodsname() { | ||
145 | + return goodsname; | ||
146 | + } | ||
147 | + | ||
148 | + public void setGoodsname(String goodsname) { | ||
149 | + this.goodsname = goodsname == null ? null : goodsname.trim(); | ||
150 | + } | ||
151 | + | ||
152 | + public Date getActime() { | ||
153 | + return actime; | ||
154 | + } | ||
155 | + | ||
156 | + public void setActime(Date actime) { | ||
157 | + this.actime = actime; | ||
158 | + } | ||
159 | + | ||
160 | + public String getStatus() { | ||
161 | + return status; | ||
162 | + } | ||
163 | + | ||
164 | + public void setStatus(String status) { | ||
165 | + this.status = status == null ? null : status.trim(); | ||
166 | + } | ||
167 | + | ||
168 | + public Boolean getIsdelete() { | ||
169 | + return isdelete; | ||
170 | + } | ||
171 | + | ||
172 | + public void setIsdelete(Boolean isdelete) { | ||
173 | + this.isdelete = isdelete; | ||
174 | + } | ||
175 | + | ||
176 | + public String getExt1() { | ||
177 | + return ext1; | ||
178 | + } | ||
179 | + | ||
180 | + public void setExt1(String ext1) { | ||
181 | + this.ext1 = ext1 == null ? null : ext1.trim(); | ||
182 | + } | ||
183 | + | ||
184 | + public String getExt2() { | ||
185 | + return ext2; | ||
186 | + } | ||
187 | + | ||
188 | + public void setExt2(String ext2) { | ||
189 | + this.ext2 = ext2 == null ? null : ext2.trim(); | ||
190 | + } | ||
191 | + | ||
192 | + public String getExt3() { | ||
193 | + return ext3; | ||
194 | + } | ||
195 | + | ||
196 | + public void setExt3(String ext3) { | ||
197 | + this.ext3 = ext3 == null ? null : ext3.trim(); | ||
198 | + } | ||
199 | + | ||
200 | + public String getExt4() { | ||
201 | + return ext4; | ||
202 | + } | ||
203 | + | ||
204 | + public void setExt4(String ext4) { | ||
205 | + this.ext4 = ext4 == null ? null : ext4.trim(); | ||
206 | + } | ||
207 | + | ||
208 | + public String getExt5() { | ||
209 | + return ext5; | ||
210 | + } | ||
211 | + | ||
212 | + public void setExt5(String ext5) { | ||
213 | + this.ext5 = ext5 == null ? null : ext5.trim(); | ||
214 | + } | ||
215 | +} |
1 | +package com.sunyo.wlpt.base.model; | ||
2 | + | ||
3 | +import java.util.Date; | ||
4 | + | ||
5 | +public class NMMS_CUSTOM_MT4201 { | ||
6 | + private String uuid; | ||
7 | + | ||
8 | + private String carrier; | ||
9 | + | ||
10 | + private String flightno; | ||
11 | + | ||
12 | + private Date flightdate; | ||
13 | + | ||
14 | + private String originstation; | ||
15 | + | ||
16 | + private String destinationstation; | ||
17 | + | ||
18 | + private String awba; | ||
19 | + | ||
20 | + private String awbh; | ||
21 | + | ||
22 | + private Integer lodingpiece; | ||
23 | + | ||
24 | + private Long lodingweight; | ||
25 | + | ||
26 | + private String customcode; | ||
27 | + | ||
28 | + private String goodsname; | ||
29 | + | ||
30 | + private Date actime; | ||
31 | + | ||
32 | + private Date loadingtime; | ||
33 | + | ||
34 | + private String specialgoods; | ||
35 | + | ||
36 | + private String status; | ||
37 | + | ||
38 | + private Boolean isdelete; | ||
39 | + | ||
40 | + private String ext1; | ||
41 | + | ||
42 | + private String ext2; | ||
43 | + | ||
44 | + private String ext3; | ||
45 | + | ||
46 | + private String ext4; | ||
47 | + | ||
48 | + private String ext5; | ||
49 | + | ||
50 | + public String getUuid() { | ||
51 | + return uuid; | ||
52 | + } | ||
53 | + | ||
54 | + public void setUuid(String uuid) { | ||
55 | + this.uuid = uuid == null ? null : uuid.trim(); | ||
56 | + } | ||
57 | + | ||
58 | + public String getCarrier() { | ||
59 | + return carrier; | ||
60 | + } | ||
61 | + | ||
62 | + public void setCarrier(String carrier) { | ||
63 | + this.carrier = carrier == null ? null : carrier.trim(); | ||
64 | + } | ||
65 | + | ||
66 | + public String getFlightno() { | ||
67 | + return flightno; | ||
68 | + } | ||
69 | + | ||
70 | + public void setFlightno(String flightno) { | ||
71 | + this.flightno = flightno == null ? null : flightno.trim(); | ||
72 | + } | ||
73 | + | ||
74 | + public Date getFlightdate() { | ||
75 | + return flightdate; | ||
76 | + } | ||
77 | + | ||
78 | + public void setFlightdate(Date flightdate) { | ||
79 | + this.flightdate = flightdate; | ||
80 | + } | ||
81 | + | ||
82 | + public String getOriginstation() { | ||
83 | + return originstation; | ||
84 | + } | ||
85 | + | ||
86 | + public void setOriginstation(String originstation) { | ||
87 | + this.originstation = originstation == null ? null : originstation.trim(); | ||
88 | + } | ||
89 | + | ||
90 | + public String getDestinationstation() { | ||
91 | + return destinationstation; | ||
92 | + } | ||
93 | + | ||
94 | + public void setDestinationstation(String destinationstation) { | ||
95 | + this.destinationstation = destinationstation == null ? null : destinationstation.trim(); | ||
96 | + } | ||
97 | + | ||
98 | + public String getAwba() { | ||
99 | + return awba; | ||
100 | + } | ||
101 | + | ||
102 | + public void setAwba(String awba) { | ||
103 | + this.awba = awba == null ? null : awba.trim(); | ||
104 | + } | ||
105 | + | ||
106 | + public String getAwbh() { | ||
107 | + return awbh; | ||
108 | + } | ||
109 | + | ||
110 | + public void setAwbh(String awbh) { | ||
111 | + this.awbh = awbh == null ? null : awbh.trim(); | ||
112 | + } | ||
113 | + | ||
114 | + public Integer getLodingpiece() { | ||
115 | + return lodingpiece; | ||
116 | + } | ||
117 | + | ||
118 | + public void setLodingpiece(Integer lodingpiece) { | ||
119 | + this.lodingpiece = lodingpiece; | ||
120 | + } | ||
121 | + | ||
122 | + public Long getLodingweight() { | ||
123 | + return lodingweight; | ||
124 | + } | ||
125 | + | ||
126 | + public void setLodingweight(Long lodingweight) { | ||
127 | + this.lodingweight = lodingweight; | ||
128 | + } | ||
129 | + | ||
130 | + public String getCustomcode() { | ||
131 | + return customcode; | ||
132 | + } | ||
133 | + | ||
134 | + public void setCustomcode(String customcode) { | ||
135 | + this.customcode = customcode == null ? null : customcode.trim(); | ||
136 | + } | ||
137 | + | ||
138 | + public String getGoodsname() { | ||
139 | + return goodsname; | ||
140 | + } | ||
141 | + | ||
142 | + public void setGoodsname(String goodsname) { | ||
143 | + this.goodsname = goodsname == null ? null : goodsname.trim(); | ||
144 | + } | ||
145 | + | ||
146 | + public Date getActime() { | ||
147 | + return actime; | ||
148 | + } | ||
149 | + | ||
150 | + public void setActime(Date actime) { | ||
151 | + this.actime = actime; | ||
152 | + } | ||
153 | + | ||
154 | + public Date getLoadingtime() { | ||
155 | + return loadingtime; | ||
156 | + } | ||
157 | + | ||
158 | + public void setLoadingtime(Date loadingtime) { | ||
159 | + this.loadingtime = loadingtime; | ||
160 | + } | ||
161 | + | ||
162 | + public String getSpecialgoods() { | ||
163 | + return specialgoods; | ||
164 | + } | ||
165 | + | ||
166 | + public void setSpecialgoods(String specialgoods) { | ||
167 | + this.specialgoods = specialgoods == null ? null : specialgoods.trim(); | ||
168 | + } | ||
169 | + | ||
170 | + public String getStatus() { | ||
171 | + return status; | ||
172 | + } | ||
173 | + | ||
174 | + public void setStatus(String status) { | ||
175 | + this.status = status == null ? null : status.trim(); | ||
176 | + } | ||
177 | + | ||
178 | + public Boolean getIsdelete() { | ||
179 | + return isdelete; | ||
180 | + } | ||
181 | + | ||
182 | + public void setIsdelete(Boolean isdelete) { | ||
183 | + this.isdelete = isdelete; | ||
184 | + } | ||
185 | + | ||
186 | + public String getExt1() { | ||
187 | + return ext1; | ||
188 | + } | ||
189 | + | ||
190 | + public void setExt1(String ext1) { | ||
191 | + this.ext1 = ext1 == null ? null : ext1.trim(); | ||
192 | + } | ||
193 | + | ||
194 | + public String getExt2() { | ||
195 | + return ext2; | ||
196 | + } | ||
197 | + | ||
198 | + public void setExt2(String ext2) { | ||
199 | + this.ext2 = ext2 == null ? null : ext2.trim(); | ||
200 | + } | ||
201 | + | ||
202 | + public String getExt3() { | ||
203 | + return ext3; | ||
204 | + } | ||
205 | + | ||
206 | + public void setExt3(String ext3) { | ||
207 | + this.ext3 = ext3 == null ? null : ext3.trim(); | ||
208 | + } | ||
209 | + | ||
210 | + public String getExt4() { | ||
211 | + return ext4; | ||
212 | + } | ||
213 | + | ||
214 | + public void setExt4(String ext4) { | ||
215 | + this.ext4 = ext4 == null ? null : ext4.trim(); | ||
216 | + } | ||
217 | + | ||
218 | + public String getExt5() { | ||
219 | + return ext5; | ||
220 | + } | ||
221 | + | ||
222 | + public void setExt5(String ext5) { | ||
223 | + this.ext5 = ext5 == null ? null : ext5.trim(); | ||
224 | + } | ||
225 | +} |
1 | +package com.sunyo.wlpt.base.model; | ||
2 | + | ||
3 | +import java.util.Date; | ||
4 | + | ||
5 | +public class NMMS_CUSTOM_MT520X { | ||
6 | + private String uuid; | ||
7 | + | ||
8 | + private String awba; | ||
9 | + | ||
10 | + private String awbh; | ||
11 | + | ||
12 | + private String carrier; | ||
13 | + | ||
14 | + private String flightno; | ||
15 | + | ||
16 | + private Date flightdate; | ||
17 | + | ||
18 | + private String originstation; | ||
19 | + | ||
20 | + private String destinationstation; | ||
21 | + | ||
22 | + private Integer piece; | ||
23 | + | ||
24 | + private Long weight; | ||
25 | + | ||
26 | + private Date starttime; | ||
27 | + | ||
28 | + private Date endtime; | ||
29 | + | ||
30 | + private String customcode; | ||
31 | + | ||
32 | + private String goodsname; | ||
33 | + | ||
34 | + private Date actime; | ||
35 | + | ||
36 | + private String rcfdep; | ||
37 | + | ||
38 | + private String status; | ||
39 | + | ||
40 | + private Boolean isdelete; | ||
41 | + | ||
42 | + private String ext1; | ||
43 | + | ||
44 | + private String ext2; | ||
45 | + | ||
46 | + private String ext3; | ||
47 | + | ||
48 | + private String ext4; | ||
49 | + | ||
50 | + private String ext5; | ||
51 | + | ||
52 | + public String getUuid() { | ||
53 | + return uuid; | ||
54 | + } | ||
55 | + | ||
56 | + public void setUuid(String uuid) { | ||
57 | + this.uuid = uuid == null ? null : uuid.trim(); | ||
58 | + } | ||
59 | + | ||
60 | + public String getAwba() { | ||
61 | + return awba; | ||
62 | + } | ||
63 | + | ||
64 | + public void setAwba(String awba) { | ||
65 | + this.awba = awba == null ? null : awba.trim(); | ||
66 | + } | ||
67 | + | ||
68 | + public String getAwbh() { | ||
69 | + return awbh; | ||
70 | + } | ||
71 | + | ||
72 | + public void setAwbh(String awbh) { | ||
73 | + this.awbh = awbh == null ? null : awbh.trim(); | ||
74 | + } | ||
75 | + | ||
76 | + public String getCarrier() { | ||
77 | + return carrier; | ||
78 | + } | ||
79 | + | ||
80 | + public void setCarrier(String carrier) { | ||
81 | + this.carrier = carrier == null ? null : carrier.trim(); | ||
82 | + } | ||
83 | + | ||
84 | + public String getFlightno() { | ||
85 | + return flightno; | ||
86 | + } | ||
87 | + | ||
88 | + public void setFlightno(String flightno) { | ||
89 | + this.flightno = flightno == null ? null : flightno.trim(); | ||
90 | + } | ||
91 | + | ||
92 | + public Date getFlightdate() { | ||
93 | + return flightdate; | ||
94 | + } | ||
95 | + | ||
96 | + public void setFlightdate(Date flightdate) { | ||
97 | + this.flightdate = flightdate; | ||
98 | + } | ||
99 | + | ||
100 | + public String getOriginstation() { | ||
101 | + return originstation; | ||
102 | + } | ||
103 | + | ||
104 | + public void setOriginstation(String originstation) { | ||
105 | + this.originstation = originstation == null ? null : originstation.trim(); | ||
106 | + } | ||
107 | + | ||
108 | + public String getDestinationstation() { | ||
109 | + return destinationstation; | ||
110 | + } | ||
111 | + | ||
112 | + public void setDestinationstation(String destinationstation) { | ||
113 | + this.destinationstation = destinationstation == null ? null : destinationstation.trim(); | ||
114 | + } | ||
115 | + | ||
116 | + public Integer getPiece() { | ||
117 | + return piece; | ||
118 | + } | ||
119 | + | ||
120 | + public void setPiece(Integer piece) { | ||
121 | + this.piece = piece; | ||
122 | + } | ||
123 | + | ||
124 | + public Long getWeight() { | ||
125 | + return weight; | ||
126 | + } | ||
127 | + | ||
128 | + public void setWeight(Long weight) { | ||
129 | + this.weight = weight; | ||
130 | + } | ||
131 | + | ||
132 | + public Date getStarttime() { | ||
133 | + return starttime; | ||
134 | + } | ||
135 | + | ||
136 | + public void setStarttime(Date starttime) { | ||
137 | + this.starttime = starttime; | ||
138 | + } | ||
139 | + | ||
140 | + public Date getEndtime() { | ||
141 | + return endtime; | ||
142 | + } | ||
143 | + | ||
144 | + public void setEndtime(Date endtime) { | ||
145 | + this.endtime = endtime; | ||
146 | + } | ||
147 | + | ||
148 | + public String getCustomcode() { | ||
149 | + return customcode; | ||
150 | + } | ||
151 | + | ||
152 | + public void setCustomcode(String customcode) { | ||
153 | + this.customcode = customcode == null ? null : customcode.trim(); | ||
154 | + } | ||
155 | + | ||
156 | + public String getGoodsname() { | ||
157 | + return goodsname; | ||
158 | + } | ||
159 | + | ||
160 | + public void setGoodsname(String goodsname) { | ||
161 | + this.goodsname = goodsname == null ? null : goodsname.trim(); | ||
162 | + } | ||
163 | + | ||
164 | + public Date getActime() { | ||
165 | + return actime; | ||
166 | + } | ||
167 | + | ||
168 | + public void setActime(Date actime) { | ||
169 | + this.actime = actime; | ||
170 | + } | ||
171 | + | ||
172 | + public String getRcfdep() { | ||
173 | + return rcfdep; | ||
174 | + } | ||
175 | + | ||
176 | + public void setRcfdep(String rcfdep) { | ||
177 | + this.rcfdep = rcfdep == null ? null : rcfdep.trim(); | ||
178 | + } | ||
179 | + | ||
180 | + public String getStatus() { | ||
181 | + return status; | ||
182 | + } | ||
183 | + | ||
184 | + public void setStatus(String status) { | ||
185 | + this.status = status == null ? null : status.trim(); | ||
186 | + } | ||
187 | + | ||
188 | + public Boolean getIsdelete() { | ||
189 | + return isdelete; | ||
190 | + } | ||
191 | + | ||
192 | + public void setIsdelete(Boolean isdelete) { | ||
193 | + this.isdelete = isdelete; | ||
194 | + } | ||
195 | + | ||
196 | + public String getExt1() { | ||
197 | + return ext1; | ||
198 | + } | ||
199 | + | ||
200 | + public void setExt1(String ext1) { | ||
201 | + this.ext1 = ext1 == null ? null : ext1.trim(); | ||
202 | + } | ||
203 | + | ||
204 | + public String getExt2() { | ||
205 | + return ext2; | ||
206 | + } | ||
207 | + | ||
208 | + public void setExt2(String ext2) { | ||
209 | + this.ext2 = ext2 == null ? null : ext2.trim(); | ||
210 | + } | ||
211 | + | ||
212 | + public String getExt3() { | ||
213 | + return ext3; | ||
214 | + } | ||
215 | + | ||
216 | + public void setExt3(String ext3) { | ||
217 | + this.ext3 = ext3 == null ? null : ext3.trim(); | ||
218 | + } | ||
219 | + | ||
220 | + public String getExt4() { | ||
221 | + return ext4; | ||
222 | + } | ||
223 | + | ||
224 | + public void setExt4(String ext4) { | ||
225 | + this.ext4 = ext4 == null ? null : ext4.trim(); | ||
226 | + } | ||
227 | + | ||
228 | + public String getExt5() { | ||
229 | + return ext5; | ||
230 | + } | ||
231 | + | ||
232 | + public void setExt5(String ext5) { | ||
233 | + this.ext5 = ext5 == null ? null : ext5.trim(); | ||
234 | + } | ||
235 | +} |
1 | +package com.sunyo.wlpt.base.model; | ||
2 | + | ||
3 | +public class NMMS_CUSTOM_MT8205 { | ||
4 | + private String uuid; | ||
5 | + | ||
6 | + private String uuid1201; | ||
7 | + | ||
8 | + private String uuid2201; | ||
9 | + | ||
10 | + private Integer transpiece; | ||
11 | + | ||
12 | + private Long transweight; | ||
13 | + | ||
14 | + private String goodsname; | ||
15 | + | ||
16 | + private String goodspackage; | ||
17 | + | ||
18 | + private String status; | ||
19 | + | ||
20 | + private String awboriginstation; | ||
21 | + | ||
22 | + private String awbdesstation; | ||
23 | + | ||
24 | + private String customcode; | ||
25 | + | ||
26 | + private Boolean isdelete; | ||
27 | + | ||
28 | + private String ext1; | ||
29 | + | ||
30 | + private String ext2; | ||
31 | + | ||
32 | + private String ext3; | ||
33 | + | ||
34 | + private String ext4; | ||
35 | + | ||
36 | + private String ext5; | ||
37 | + | ||
38 | + public String getUuid() { | ||
39 | + return uuid; | ||
40 | + } | ||
41 | + | ||
42 | + public void setUuid(String uuid) { | ||
43 | + this.uuid = uuid == null ? null : uuid.trim(); | ||
44 | + } | ||
45 | + | ||
46 | + public String getUuid1201() { | ||
47 | + return uuid1201; | ||
48 | + } | ||
49 | + | ||
50 | + public void setUuid1201(String uuid1201) { | ||
51 | + this.uuid1201 = uuid1201 == null ? null : uuid1201.trim(); | ||
52 | + } | ||
53 | + | ||
54 | + public String getUuid2201() { | ||
55 | + return uuid2201; | ||
56 | + } | ||
57 | + | ||
58 | + public void setUuid2201(String uuid2201) { | ||
59 | + this.uuid2201 = uuid2201 == null ? null : uuid2201.trim(); | ||
60 | + } | ||
61 | + | ||
62 | + public Integer getTranspiece() { | ||
63 | + return transpiece; | ||
64 | + } | ||
65 | + | ||
66 | + public void setTranspiece(Integer transpiece) { | ||
67 | + this.transpiece = transpiece; | ||
68 | + } | ||
69 | + | ||
70 | + public Long getTransweight() { | ||
71 | + return transweight; | ||
72 | + } | ||
73 | + | ||
74 | + public void setTransweight(Long transweight) { | ||
75 | + this.transweight = transweight; | ||
76 | + } | ||
77 | + | ||
78 | + public String getGoodsname() { | ||
79 | + return goodsname; | ||
80 | + } | ||
81 | + | ||
82 | + public void setGoodsname(String goodsname) { | ||
83 | + this.goodsname = goodsname == null ? null : goodsname.trim(); | ||
84 | + } | ||
85 | + | ||
86 | + public String getGoodspackage() { | ||
87 | + return goodspackage; | ||
88 | + } | ||
89 | + | ||
90 | + public void setGoodspackage(String goodspackage) { | ||
91 | + this.goodspackage = goodspackage == null ? null : goodspackage.trim(); | ||
92 | + } | ||
93 | + | ||
94 | + public String getStatus() { | ||
95 | + return status; | ||
96 | + } | ||
97 | + | ||
98 | + public void setStatus(String status) { | ||
99 | + this.status = status == null ? null : status.trim(); | ||
100 | + } | ||
101 | + | ||
102 | + public String getAwboriginstation() { | ||
103 | + return awboriginstation; | ||
104 | + } | ||
105 | + | ||
106 | + public void setAwboriginstation(String awboriginstation) { | ||
107 | + this.awboriginstation = awboriginstation == null ? null : awboriginstation.trim(); | ||
108 | + } | ||
109 | + | ||
110 | + public String getAwbdesstation() { | ||
111 | + return awbdesstation; | ||
112 | + } | ||
113 | + | ||
114 | + public void setAwbdesstation(String awbdesstation) { | ||
115 | + this.awbdesstation = awbdesstation == null ? null : awbdesstation.trim(); | ||
116 | + } | ||
117 | + | ||
118 | + public String getCustomcode() { | ||
119 | + return customcode; | ||
120 | + } | ||
121 | + | ||
122 | + public void setCustomcode(String customcode) { | ||
123 | + this.customcode = customcode == null ? null : customcode.trim(); | ||
124 | + } | ||
125 | + | ||
126 | + public Boolean getIsdelete() { | ||
127 | + return isdelete; | ||
128 | + } | ||
129 | + | ||
130 | + public void setIsdelete(Boolean isdelete) { | ||
131 | + this.isdelete = isdelete; | ||
132 | + } | ||
133 | + | ||
134 | + public String getExt1() { | ||
135 | + return ext1; | ||
136 | + } | ||
137 | + | ||
138 | + public void setExt1(String ext1) { | ||
139 | + this.ext1 = ext1 == null ? null : ext1.trim(); | ||
140 | + } | ||
141 | + | ||
142 | + public String getExt2() { | ||
143 | + return ext2; | ||
144 | + } | ||
145 | + | ||
146 | + public void setExt2(String ext2) { | ||
147 | + this.ext2 = ext2 == null ? null : ext2.trim(); | ||
148 | + } | ||
149 | + | ||
150 | + public String getExt3() { | ||
151 | + return ext3; | ||
152 | + } | ||
153 | + | ||
154 | + public void setExt3(String ext3) { | ||
155 | + this.ext3 = ext3 == null ? null : ext3.trim(); | ||
156 | + } | ||
157 | + | ||
158 | + public String getExt4() { | ||
159 | + return ext4; | ||
160 | + } | ||
161 | + | ||
162 | + public void setExt4(String ext4) { | ||
163 | + this.ext4 = ext4 == null ? null : ext4.trim(); | ||
164 | + } | ||
165 | + | ||
166 | + public String getExt5() { | ||
167 | + return ext5; | ||
168 | + } | ||
169 | + | ||
170 | + public void setExt5(String ext5) { | ||
171 | + this.ext5 = ext5 == null ? null : ext5.trim(); | ||
172 | + } | ||
173 | +} |
1 | +package com.sunyo.wlpt.base.model; | ||
2 | + | ||
3 | +import java.util.Date; | ||
4 | + | ||
5 | +public class NMMS_CUSTOM_RESPONSE { | ||
6 | + private String id; | ||
7 | + | ||
8 | + private Date flightdate; | ||
9 | + | ||
10 | + private String flightno; | ||
11 | + | ||
12 | + private String carrier; | ||
13 | + | ||
14 | + private String awbano; | ||
15 | + | ||
16 | + private String awbhno; | ||
17 | + | ||
18 | + private String bustype; | ||
19 | + | ||
20 | + private Date busdate; | ||
21 | + | ||
22 | + private Long busweight; | ||
23 | + | ||
24 | + private Integer buspiece; | ||
25 | + | ||
26 | + private String opertype; | ||
27 | + | ||
28 | + private String cusmsgid; | ||
29 | + | ||
30 | + private String cussenderid; | ||
31 | + | ||
32 | + private String cusreciverid; | ||
33 | + | ||
34 | + private String cusversion; | ||
35 | + | ||
36 | + private String cusfunctioncode; | ||
37 | + | ||
38 | + private Date cusresrcvtime; | ||
39 | + | ||
40 | + private Date cusressendtime; | ||
41 | + | ||
42 | + private String cusrescode; | ||
43 | + | ||
44 | + private String cusresstatus; | ||
45 | + | ||
46 | + private String operusername; | ||
47 | + | ||
48 | + private String opersystemname; | ||
49 | + | ||
50 | + private String cusrestext; | ||
51 | + | ||
52 | + public String getId() { | ||
53 | + return id; | ||
54 | + } | ||
55 | + | ||
56 | + public void setId(String id) { | ||
57 | + this.id = id == null ? null : id.trim(); | ||
58 | + } | ||
59 | + | ||
60 | + public Date getFlightdate() { | ||
61 | + return flightdate; | ||
62 | + } | ||
63 | + | ||
64 | + public void setFlightdate(Date flightdate) { | ||
65 | + this.flightdate = flightdate; | ||
66 | + } | ||
67 | + | ||
68 | + public String getFlightno() { | ||
69 | + return flightno; | ||
70 | + } | ||
71 | + | ||
72 | + public void setFlightno(String flightno) { | ||
73 | + this.flightno = flightno == null ? null : flightno.trim(); | ||
74 | + } | ||
75 | + | ||
76 | + public String getCarrier() { | ||
77 | + return carrier; | ||
78 | + } | ||
79 | + | ||
80 | + public void setCarrier(String carrier) { | ||
81 | + this.carrier = carrier == null ? null : carrier.trim(); | ||
82 | + } | ||
83 | + | ||
84 | + public String getAwbano() { | ||
85 | + return awbano; | ||
86 | + } | ||
87 | + | ||
88 | + public void setAwbano(String awbano) { | ||
89 | + this.awbano = awbano == null ? null : awbano.trim(); | ||
90 | + } | ||
91 | + | ||
92 | + public String getAwbhno() { | ||
93 | + return awbhno; | ||
94 | + } | ||
95 | + | ||
96 | + public void setAwbhno(String awbhno) { | ||
97 | + this.awbhno = awbhno == null ? null : awbhno.trim(); | ||
98 | + } | ||
99 | + | ||
100 | + public String getBustype() { | ||
101 | + return bustype; | ||
102 | + } | ||
103 | + | ||
104 | + public void setBustype(String bustype) { | ||
105 | + this.bustype = bustype == null ? null : bustype.trim(); | ||
106 | + } | ||
107 | + | ||
108 | + public Date getBusdate() { | ||
109 | + return busdate; | ||
110 | + } | ||
111 | + | ||
112 | + public void setBusdate(Date busdate) { | ||
113 | + this.busdate = busdate; | ||
114 | + } | ||
115 | + | ||
116 | + public Long getBusweight() { | ||
117 | + return busweight; | ||
118 | + } | ||
119 | + | ||
120 | + public void setBusweight(Long busweight) { | ||
121 | + this.busweight = busweight; | ||
122 | + } | ||
123 | + | ||
124 | + public Integer getBuspiece() { | ||
125 | + return buspiece; | ||
126 | + } | ||
127 | + | ||
128 | + public void setBuspiece(Integer buspiece) { | ||
129 | + this.buspiece = buspiece; | ||
130 | + } | ||
131 | + | ||
132 | + public String getOpertype() { | ||
133 | + return opertype; | ||
134 | + } | ||
135 | + | ||
136 | + public void setOpertype(String opertype) { | ||
137 | + this.opertype = opertype == null ? null : opertype.trim(); | ||
138 | + } | ||
139 | + | ||
140 | + public String getCusmsgid() { | ||
141 | + return cusmsgid; | ||
142 | + } | ||
143 | + | ||
144 | + public void setCusmsgid(String cusmsgid) { | ||
145 | + this.cusmsgid = cusmsgid == null ? null : cusmsgid.trim(); | ||
146 | + } | ||
147 | + | ||
148 | + public String getCussenderid() { | ||
149 | + return cussenderid; | ||
150 | + } | ||
151 | + | ||
152 | + public void setCussenderid(String cussenderid) { | ||
153 | + this.cussenderid = cussenderid == null ? null : cussenderid.trim(); | ||
154 | + } | ||
155 | + | ||
156 | + public String getCusreciverid() { | ||
157 | + return cusreciverid; | ||
158 | + } | ||
159 | + | ||
160 | + public void setCusreciverid(String cusreciverid) { | ||
161 | + this.cusreciverid = cusreciverid == null ? null : cusreciverid.trim(); | ||
162 | + } | ||
163 | + | ||
164 | + public String getCusversion() { | ||
165 | + return cusversion; | ||
166 | + } | ||
167 | + | ||
168 | + public void setCusversion(String cusversion) { | ||
169 | + this.cusversion = cusversion == null ? null : cusversion.trim(); | ||
170 | + } | ||
171 | + | ||
172 | + public String getCusfunctioncode() { | ||
173 | + return cusfunctioncode; | ||
174 | + } | ||
175 | + | ||
176 | + public void setCusfunctioncode(String cusfunctioncode) { | ||
177 | + this.cusfunctioncode = cusfunctioncode == null ? null : cusfunctioncode.trim(); | ||
178 | + } | ||
179 | + | ||
180 | + public Date getCusresrcvtime() { | ||
181 | + return cusresrcvtime; | ||
182 | + } | ||
183 | + | ||
184 | + public void setCusresrcvtime(Date cusresrcvtime) { | ||
185 | + this.cusresrcvtime = cusresrcvtime; | ||
186 | + } | ||
187 | + | ||
188 | + public Date getCusressendtime() { | ||
189 | + return cusressendtime; | ||
190 | + } | ||
191 | + | ||
192 | + public void setCusressendtime(Date cusressendtime) { | ||
193 | + this.cusressendtime = cusressendtime; | ||
194 | + } | ||
195 | + | ||
196 | + public String getCusrescode() { | ||
197 | + return cusrescode; | ||
198 | + } | ||
199 | + | ||
200 | + public void setCusrescode(String cusrescode) { | ||
201 | + this.cusrescode = cusrescode == null ? null : cusrescode.trim(); | ||
202 | + } | ||
203 | + | ||
204 | + public String getCusresstatus() { | ||
205 | + return cusresstatus; | ||
206 | + } | ||
207 | + | ||
208 | + public void setCusresstatus(String cusresstatus) { | ||
209 | + this.cusresstatus = cusresstatus == null ? null : cusresstatus.trim(); | ||
210 | + } | ||
211 | + | ||
212 | + public String getOperusername() { | ||
213 | + return operusername; | ||
214 | + } | ||
215 | + | ||
216 | + public void setOperusername(String operusername) { | ||
217 | + this.operusername = operusername == null ? null : operusername.trim(); | ||
218 | + } | ||
219 | + | ||
220 | + public String getOpersystemname() { | ||
221 | + return opersystemname; | ||
222 | + } | ||
223 | + | ||
224 | + public void setOpersystemname(String opersystemname) { | ||
225 | + this.opersystemname = opersystemname == null ? null : opersystemname.trim(); | ||
226 | + } | ||
227 | + | ||
228 | + public String getCusrestext() { | ||
229 | + return cusrestext; | ||
230 | + } | ||
231 | + | ||
232 | + public void setCusrestext(String cusrestext) { | ||
233 | + this.cusrestext = cusrestext == null ? null : cusrestext.trim(); | ||
234 | + } | ||
235 | +} |
1 | +package com.sunyo.wlpt.base.model; | ||
2 | + | ||
3 | +import java.util.Date; | ||
4 | + | ||
5 | +public class NMMS_FFM_INFO { | ||
6 | + private String autoid; | ||
7 | + | ||
8 | + private Date createdate; | ||
9 | + | ||
10 | + private String flightno; | ||
11 | + | ||
12 | + private Date flightdate; | ||
13 | + | ||
14 | + private String waybillnomaster; | ||
15 | + | ||
16 | + private String originatingstation; | ||
17 | + | ||
18 | + private String destinationstation; | ||
19 | + | ||
20 | + private String manifesttotalpiece; | ||
21 | + | ||
22 | + private String manifesttotalweight; | ||
23 | + | ||
24 | + private String productname; | ||
25 | + | ||
26 | + private String specialgoodscode; | ||
27 | + | ||
28 | + private String customscode; | ||
29 | + | ||
30 | + private String customsstatus; | ||
31 | + | ||
32 | + private String isbatch; | ||
33 | + | ||
34 | + private String pallet; | ||
35 | + | ||
36 | + private String pallettype; | ||
37 | + | ||
38 | + private String palletno; | ||
39 | + | ||
40 | + private String reportorder; | ||
41 | + | ||
42 | + private String islast; | ||
43 | + | ||
44 | + private String originatingstationBill; | ||
45 | + | ||
46 | + private String destinationstationBill; | ||
47 | + | ||
48 | + private String totalpiece; | ||
49 | + | ||
50 | + private String dealstatus; | ||
51 | + | ||
52 | + public String getAutoid() { | ||
53 | + return autoid; | ||
54 | + } | ||
55 | + | ||
56 | + public void setAutoid(String autoid) { | ||
57 | + this.autoid = autoid == null ? null : autoid.trim(); | ||
58 | + } | ||
59 | + | ||
60 | + public Date getCreatedate() { | ||
61 | + return createdate; | ||
62 | + } | ||
63 | + | ||
64 | + public void setCreatedate(Date createdate) { | ||
65 | + this.createdate = createdate; | ||
66 | + } | ||
67 | + | ||
68 | + public String getFlightno() { | ||
69 | + return flightno; | ||
70 | + } | ||
71 | + | ||
72 | + public void setFlightno(String flightno) { | ||
73 | + this.flightno = flightno == null ? null : flightno.trim(); | ||
74 | + } | ||
75 | + | ||
76 | + public Date getFlightdate() { | ||
77 | + return flightdate; | ||
78 | + } | ||
79 | + | ||
80 | + public void setFlightdate(Date flightdate) { | ||
81 | + this.flightdate = flightdate; | ||
82 | + } | ||
83 | + | ||
84 | + public String getWaybillnomaster() { | ||
85 | + return waybillnomaster; | ||
86 | + } | ||
87 | + | ||
88 | + public void setWaybillnomaster(String waybillnomaster) { | ||
89 | + this.waybillnomaster = waybillnomaster == null ? null : waybillnomaster.trim(); | ||
90 | + } | ||
91 | + | ||
92 | + public String getOriginatingstation() { | ||
93 | + return originatingstation; | ||
94 | + } | ||
95 | + | ||
96 | + public void setOriginatingstation(String originatingstation) { | ||
97 | + this.originatingstation = originatingstation == null ? null : originatingstation.trim(); | ||
98 | + } | ||
99 | + | ||
100 | + public String getDestinationstation() { | ||
101 | + return destinationstation; | ||
102 | + } | ||
103 | + | ||
104 | + public void setDestinationstation(String destinationstation) { | ||
105 | + this.destinationstation = destinationstation == null ? null : destinationstation.trim(); | ||
106 | + } | ||
107 | + | ||
108 | + public String getManifesttotalpiece() { | ||
109 | + return manifesttotalpiece; | ||
110 | + } | ||
111 | + | ||
112 | + public void setManifesttotalpiece(String manifesttotalpiece) { | ||
113 | + this.manifesttotalpiece = manifesttotalpiece == null ? null : manifesttotalpiece.trim(); | ||
114 | + } | ||
115 | + | ||
116 | + public String getManifesttotalweight() { | ||
117 | + return manifesttotalweight; | ||
118 | + } | ||
119 | + | ||
120 | + public void setManifesttotalweight(String manifesttotalweight) { | ||
121 | + this.manifesttotalweight = manifesttotalweight == null ? null : manifesttotalweight.trim(); | ||
122 | + } | ||
123 | + | ||
124 | + public String getProductname() { | ||
125 | + return productname; | ||
126 | + } | ||
127 | + | ||
128 | + public void setProductname(String productname) { | ||
129 | + this.productname = productname == null ? null : productname.trim(); | ||
130 | + } | ||
131 | + | ||
132 | + public String getSpecialgoodscode() { | ||
133 | + return specialgoodscode; | ||
134 | + } | ||
135 | + | ||
136 | + public void setSpecialgoodscode(String specialgoodscode) { | ||
137 | + this.specialgoodscode = specialgoodscode == null ? null : specialgoodscode.trim(); | ||
138 | + } | ||
139 | + | ||
140 | + public String getCustomscode() { | ||
141 | + return customscode; | ||
142 | + } | ||
143 | + | ||
144 | + public void setCustomscode(String customscode) { | ||
145 | + this.customscode = customscode == null ? null : customscode.trim(); | ||
146 | + } | ||
147 | + | ||
148 | + public String getCustomsstatus() { | ||
149 | + return customsstatus; | ||
150 | + } | ||
151 | + | ||
152 | + public void setCustomsstatus(String customsstatus) { | ||
153 | + this.customsstatus = customsstatus == null ? null : customsstatus.trim(); | ||
154 | + } | ||
155 | + | ||
156 | + public String getIsbatch() { | ||
157 | + return isbatch; | ||
158 | + } | ||
159 | + | ||
160 | + public void setIsbatch(String isbatch) { | ||
161 | + this.isbatch = isbatch == null ? null : isbatch.trim(); | ||
162 | + } | ||
163 | + | ||
164 | + public String getPallet() { | ||
165 | + return pallet; | ||
166 | + } | ||
167 | + | ||
168 | + public void setPallet(String pallet) { | ||
169 | + this.pallet = pallet == null ? null : pallet.trim(); | ||
170 | + } | ||
171 | + | ||
172 | + public String getPallettype() { | ||
173 | + return pallettype; | ||
174 | + } | ||
175 | + | ||
176 | + public void setPallettype(String pallettype) { | ||
177 | + this.pallettype = pallettype == null ? null : pallettype.trim(); | ||
178 | + } | ||
179 | + | ||
180 | + public String getPalletno() { | ||
181 | + return palletno; | ||
182 | + } | ||
183 | + | ||
184 | + public void setPalletno(String palletno) { | ||
185 | + this.palletno = palletno == null ? null : palletno.trim(); | ||
186 | + } | ||
187 | + | ||
188 | + public String getReportorder() { | ||
189 | + return reportorder; | ||
190 | + } | ||
191 | + | ||
192 | + public void setReportorder(String reportorder) { | ||
193 | + this.reportorder = reportorder == null ? null : reportorder.trim(); | ||
194 | + } | ||
195 | + | ||
196 | + public String getIslast() { | ||
197 | + return islast; | ||
198 | + } | ||
199 | + | ||
200 | + public void setIslast(String islast) { | ||
201 | + this.islast = islast == null ? null : islast.trim(); | ||
202 | + } | ||
203 | + | ||
204 | + public String getOriginatingstationBill() { | ||
205 | + return originatingstationBill; | ||
206 | + } | ||
207 | + | ||
208 | + public void setOriginatingstationBill(String originatingstationBill) { | ||
209 | + this.originatingstationBill = originatingstationBill == null ? null : originatingstationBill.trim(); | ||
210 | + } | ||
211 | + | ||
212 | + public String getDestinationstationBill() { | ||
213 | + return destinationstationBill; | ||
214 | + } | ||
215 | + | ||
216 | + public void setDestinationstationBill(String destinationstationBill) { | ||
217 | + this.destinationstationBill = destinationstationBill == null ? null : destinationstationBill.trim(); | ||
218 | + } | ||
219 | + | ||
220 | + public String getTotalpiece() { | ||
221 | + return totalpiece; | ||
222 | + } | ||
223 | + | ||
224 | + public void setTotalpiece(String totalpiece) { | ||
225 | + this.totalpiece = totalpiece == null ? null : totalpiece.trim(); | ||
226 | + } | ||
227 | + | ||
228 | + public String getDealstatus() { | ||
229 | + return dealstatus; | ||
230 | + } | ||
231 | + | ||
232 | + public void setDealstatus(String dealstatus) { | ||
233 | + this.dealstatus = dealstatus == null ? null : dealstatus.trim(); | ||
234 | + } | ||
235 | +} |
1 | +package com.sunyo.wlpt.base.model; | ||
2 | + | ||
3 | +public class STATIC_CUSTOMCODE_CUSTOMNAME { | ||
4 | + private String customcode; | ||
5 | + | ||
6 | + private String customname; | ||
7 | + | ||
8 | + public String getCustomcode() { | ||
9 | + return customcode; | ||
10 | + } | ||
11 | + | ||
12 | + public void setCustomcode(String customcode) { | ||
13 | + this.customcode = customcode == null ? null : customcode.trim(); | ||
14 | + } | ||
15 | + | ||
16 | + public String getCustomname() { | ||
17 | + return customname; | ||
18 | + } | ||
19 | + | ||
20 | + public void setCustomname(String customname) { | ||
21 | + this.customname = customname == null ? null : customname.trim(); | ||
22 | + } | ||
23 | +} |
1 | +package com.sunyo.wlpt.base.model; | ||
2 | + | ||
3 | +import java.math.BigDecimal; | ||
4 | +import java.util.Date; | ||
5 | + | ||
6 | +public class STATIC_CUSTOM_RESPONSE_BASE { | ||
7 | + private String responsecode; | ||
8 | + | ||
9 | + private String responsetext; | ||
10 | + | ||
11 | + private String typeremark; | ||
12 | + | ||
13 | + private String type; | ||
14 | + | ||
15 | + private BigDecimal sortnum; | ||
16 | + | ||
17 | + private Date operationtime; | ||
18 | + | ||
19 | + public String getResponsecode() { | ||
20 | + return responsecode; | ||
21 | + } | ||
22 | + | ||
23 | + public void setResponsecode(String responsecode) { | ||
24 | + this.responsecode = responsecode == null ? null : responsecode.trim(); | ||
25 | + } | ||
26 | + | ||
27 | + public String getResponsetext() { | ||
28 | + return responsetext; | ||
29 | + } | ||
30 | + | ||
31 | + public void setResponsetext(String responsetext) { | ||
32 | + this.responsetext = responsetext == null ? null : responsetext.trim(); | ||
33 | + } | ||
34 | + | ||
35 | + public String getTyperemark() { | ||
36 | + return typeremark; | ||
37 | + } | ||
38 | + | ||
39 | + public void setTyperemark(String typeremark) { | ||
40 | + this.typeremark = typeremark == null ? null : typeremark.trim(); | ||
41 | + } | ||
42 | + | ||
43 | + public String getType() { | ||
44 | + return type; | ||
45 | + } | ||
46 | + | ||
47 | + public void setType(String type) { | ||
48 | + this.type = type == null ? null : type.trim(); | ||
49 | + } | ||
50 | + | ||
51 | + public BigDecimal getSortnum() { | ||
52 | + return sortnum; | ||
53 | + } | ||
54 | + | ||
55 | + public void setSortnum(BigDecimal sortnum) { | ||
56 | + this.sortnum = sortnum; | ||
57 | + } | ||
58 | + | ||
59 | + public Date getOperationtime() { | ||
60 | + return operationtime; | ||
61 | + } | ||
62 | + | ||
63 | + public void setOperationtime(Date operationtime) { | ||
64 | + this.operationtime = operationtime; | ||
65 | + } | ||
66 | +} |
1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
2 | +<!DOCTYPE generatorConfiguration | ||
3 | + PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN" | ||
4 | + "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd"> | ||
5 | +<generatorConfiguration> | ||
6 | + <!-- 数据库驱动:选择你的本地硬盘上面的数据库驱动包--> | ||
7 | + <classPathEntry location="/Users/mrz/Downloads/mybatis-generator-core-1.3.2/lib/mysql-connector-java-5.1.25-bin.jar"/> | ||
8 | + <!--<classPathEntry location="/Users/mrz/Documents/maven/ojdbc6.jar"/>--> | ||
9 | + <context id="DB2Tables" targetRuntime="MyBatis3"> | ||
10 | + <commentGenerator> | ||
11 | + <property name="suppressDate" value="true"/> | ||
12 | + <!-- 是否去除自动生成的注释 true:是 : false:否 --> | ||
13 | + <property name="suppressAllComments" value="true"/> | ||
14 | + </commentGenerator> | ||
15 | + <!--数据库链接URL,用户名、密码 --> | ||
16 | + <jdbcConnection driverClass="com.mysql.jdbc.Driver" | ||
17 | + connectionURL="jdbc:mysql://118.31.66.166:3306/WLPT_NMMS" | ||
18 | + userId="110" | ||
19 | + password="QAHqCJf2kFYCLirM"> | ||
20 | + </jdbcConnection> | ||
21 | + <!--<jdbcConnection driverClass="oracle.jdbc.driver.OracleDriver"--> | ||
22 | + <!--connectionURL="jdbc:oracle:thin:@10.50.3.68:1521:CGODW"--> | ||
23 | + <!--userId="CGOETL"--> | ||
24 | + <!--password="1q2w3e4r">--> | ||
25 | + <!--</jdbcConnection>--> | ||
26 | + <!-- 默认false,把JDBC DECIMAL 和 NUMERIC 类型解析为 Integer,为 true时把JDBC DECIMAL 和 | ||
27 | + NUMERIC 类型解析为java.math.BigDecimal --> | ||
28 | + <!--<javaTypeResolver>--> | ||
29 | + <!--<property name="forceBigDecimals" value="true" />--> | ||
30 | + <!--</javaTypeResolver>--> | ||
31 | + <javaTypeResolver> | ||
32 | + <property name="forceBigDecimals" value="false"/> | ||
33 | + </javaTypeResolver> | ||
34 | + <!-- 生成模型的包名和位置--> | ||
35 | + <javaModelGenerator targetPackage="com.sunyo.wlpt.base.model" targetProject="src/main/java"> | ||
36 | + <property name="enableSubPackages" value="true"/> | ||
37 | + <property name="trimStrings" value="true"/> | ||
38 | + </javaModelGenerator> | ||
39 | + <!-- 生成映射文件的包名和位置--> | ||
40 | + <sqlMapGenerator targetPackage="mapping" targetProject="src/main/resources"> | ||
41 | + <property name="enableSubPackages" value="true"/> | ||
42 | + </sqlMapGenerator> | ||
43 | + <!-- 生成DAO的包名和位置--> | ||
44 | + <javaClientGenerator type="XMLMAPPER" targetPackage="com.sunyo.wlpt.base.dao" targetProject="src/main/java"> | ||
45 | + <property name="enableSubPackages" value="true"/> | ||
46 | + </javaClientGenerator> | ||
47 | + <!-- 要生成的表 tableName是数据库中的表名或视图名 domainObjectName是实体类名--> | ||
48 | + <table tableName="CUSTOM_MT1201" domainObjectName="NMMS_CUSTOM_MT1201" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table> | ||
49 | + <table tableName="CUSTOM_MT2201" domainObjectName="NMMS_CUSTOM_MT2201" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table> | ||
50 | + <table tableName="CUSTOM_MT3201" domainObjectName="NMMS_CUSTOM_MT3201" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table> | ||
51 | + <table tableName="CUSTOM_MT4201" domainObjectName="NMMS_CUSTOM_MT4201" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table> | ||
52 | + <table tableName="CUSTOM_MT520X" domainObjectName="NMMS_CUSTOM_MT520X" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table> | ||
53 | + <table tableName="CUSTOM_MT8205" domainObjectName="NMMS_CUSTOM_MT8205" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table> | ||
54 | + <table tableName="FFM_INFO" domainObjectName="NMMS_FFM_INFO" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table> | ||
55 | + <table tableName="CONFIG_AIRSTATION_CUSTOMCODE" domainObjectName="CONFIG_AIRSTATION_CUSTOMCODE" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table> | ||
56 | + <table tableName="CONFIG_USER_CARRIER" domainObjectName="CONFIG_USER_CARRIER" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table> | ||
57 | + <table tableName="CONFIG_USER_CUSTOMCODE" domainObjectName="CONFIG_USER_CUSTOMCODE" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table> | ||
58 | + <table tableName="CONFIG_USER_CUSTOMCODE" domainObjectName="CONFIG_USER_CUSTOMCODE" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table> | ||
59 | + <table tableName="CONFIG_USER_EnterpriseCode" domainObjectName="CONFIG_USER_EnterpriseCode" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table> | ||
60 | + <table tableName="STATIC_CUSTOM_RESPONSE_BASE" domainObjectName="STATIC_CUSTOM_RESPONSE_BASE" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table> | ||
61 | + <table tableName="STATIC_CUSTOMCODE_CUSTOMNAME" domainObjectName="STATIC_CUSTOMCODE_CUSTOMNAME" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table> | ||
62 | + </context> | ||
63 | +</generatorConfiguration> |
-
请 注册 或 登录 后发表评论