TKpiCargoWaybill.java
12.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
package com.tianbo.model;
import java.math.BigDecimal;
import java.util.Date;
public class TKpiCargoWaybill {
private BigDecimal fid;
private String waybillid;
private String waybilltype;
private String waybillpre;
private String waybillno;
private String domint;
private String sairportid;
private String eairportid;
private String scityid;
private String ecityid;
private String istrans;
private String customscode;
private String specoperid;
private String airline1;
private String deststation1;
private String destcity1;
private String airline2;
private String deststation2;
private String destcity2;
private String airline3;
private String deststation3;
private String destcity3;
private String airline4;
private String deststation4;
private String destcity4;
private String productid;
private String productname;
private String agentid;
private String agentname;
private String shprname;
private String shprtel;
private String shpraddress;
private String shpragent;
private String cnsnname;
private String cnsntel;
private String cnsnaddress;
private String cnsnagent;
private BigDecimal carrycost;
private BigDecimal carryrate;
private BigDecimal agentcost;
private BigDecimal agentrate;
private BigDecimal shippervalue;
private BigDecimal insurevalue;
private BigDecimal hbillqty;
private BigDecimal pcs;
private BigDecimal weight;
private BigDecimal vol;
private BigDecimal curweek;
private BigDecimal curmonth;
private BigDecimal curyear;
private Date createtime;
private Date updatetime;
private String ctrlopedepartment;
private String waybillfullnum;
private String imp;
private String exp;
private BigDecimal endweek;
private BigDecimal endmonth;
private BigDecimal endyear;
public BigDecimal getFid() {
return fid;
}
public void setFid(BigDecimal fid) {
this.fid = fid;
}
public String getWaybillid() {
return waybillid;
}
public void setWaybillid(String waybillid) {
this.waybillid = waybillid == null ? null : waybillid.trim();
}
public String getWaybilltype() {
return waybilltype;
}
public void setWaybilltype(String waybilltype) {
this.waybilltype = waybilltype == null ? null : waybilltype.trim();
}
public String getWaybillpre() {
return waybillpre;
}
public void setWaybillpre(String waybillpre) {
this.waybillpre = waybillpre == null ? null : waybillpre.trim();
}
public String getWaybillno() {
return waybillno;
}
public void setWaybillno(String waybillno) {
this.waybillno = waybillno == null ? null : waybillno.trim();
}
public String getDomint() {
return domint;
}
public void setDomint(String domint) {
this.domint = domint == null ? null : domint.trim();
}
public String getSairportid() {
return sairportid;
}
public void setSairportid(String sairportid) {
this.sairportid = sairportid == null ? null : sairportid.trim();
}
public String getEairportid() {
return eairportid;
}
public void setEairportid(String eairportid) {
this.eairportid = eairportid == null ? null : eairportid.trim();
}
public String getScityid() {
return scityid;
}
public void setScityid(String scityid) {
this.scityid = scityid == null ? null : scityid.trim();
}
public String getEcityid() {
return ecityid;
}
public void setEcityid(String ecityid) {
this.ecityid = ecityid == null ? null : ecityid.trim();
}
public String getIstrans() {
return istrans;
}
public void setIstrans(String istrans) {
this.istrans = istrans == null ? null : istrans.trim();
}
public String getCustomscode() {
return customscode;
}
public void setCustomscode(String customscode) {
this.customscode = customscode == null ? null : customscode.trim();
}
public String getSpecoperid() {
return specoperid;
}
public void setSpecoperid(String specoperid) {
this.specoperid = specoperid == null ? null : specoperid.trim();
}
public String getAirline1() {
return airline1;
}
public void setAirline1(String airline1) {
this.airline1 = airline1 == null ? null : airline1.trim();
}
public String getDeststation1() {
return deststation1;
}
public void setDeststation1(String deststation1) {
this.deststation1 = deststation1 == null ? null : deststation1.trim();
}
public String getDestcity1() {
return destcity1;
}
public void setDestcity1(String destcity1) {
this.destcity1 = destcity1 == null ? null : destcity1.trim();
}
public String getAirline2() {
return airline2;
}
public void setAirline2(String airline2) {
this.airline2 = airline2 == null ? null : airline2.trim();
}
public String getDeststation2() {
return deststation2;
}
public void setDeststation2(String deststation2) {
this.deststation2 = deststation2 == null ? null : deststation2.trim();
}
public String getDestcity2() {
return destcity2;
}
public void setDestcity2(String destcity2) {
this.destcity2 = destcity2 == null ? null : destcity2.trim();
}
public String getAirline3() {
return airline3;
}
public void setAirline3(String airline3) {
this.airline3 = airline3 == null ? null : airline3.trim();
}
public String getDeststation3() {
return deststation3;
}
public void setDeststation3(String deststation3) {
this.deststation3 = deststation3 == null ? null : deststation3.trim();
}
public String getDestcity3() {
return destcity3;
}
public void setDestcity3(String destcity3) {
this.destcity3 = destcity3 == null ? null : destcity3.trim();
}
public String getAirline4() {
return airline4;
}
public void setAirline4(String airline4) {
this.airline4 = airline4 == null ? null : airline4.trim();
}
public String getDeststation4() {
return deststation4;
}
public void setDeststation4(String deststation4) {
this.deststation4 = deststation4 == null ? null : deststation4.trim();
}
public String getDestcity4() {
return destcity4;
}
public void setDestcity4(String destcity4) {
this.destcity4 = destcity4 == null ? null : destcity4.trim();
}
public String getProductid() {
return productid;
}
public void setProductid(String productid) {
this.productid = productid == null ? null : productid.trim();
}
public String getProductname() {
return productname;
}
public void setProductname(String productname) {
this.productname = productname == null ? null : productname.trim();
}
public String getAgentid() {
return agentid;
}
public void setAgentid(String agentid) {
this.agentid = agentid == null ? null : agentid.trim();
}
public String getAgentname() {
return agentname;
}
public void setAgentname(String agentname) {
this.agentname = agentname == null ? null : agentname.trim();
}
public String getShprname() {
return shprname;
}
public void setShprname(String shprname) {
this.shprname = shprname == null ? null : shprname.trim();
}
public String getShprtel() {
return shprtel;
}
public void setShprtel(String shprtel) {
this.shprtel = shprtel == null ? null : shprtel.trim();
}
public String getShpraddress() {
return shpraddress;
}
public void setShpraddress(String shpraddress) {
this.shpraddress = shpraddress == null ? null : shpraddress.trim();
}
public String getShpragent() {
return shpragent;
}
public void setShpragent(String shpragent) {
this.shpragent = shpragent == null ? null : shpragent.trim();
}
public String getCnsnname() {
return cnsnname;
}
public void setCnsnname(String cnsnname) {
this.cnsnname = cnsnname == null ? null : cnsnname.trim();
}
public String getCnsntel() {
return cnsntel;
}
public void setCnsntel(String cnsntel) {
this.cnsntel = cnsntel == null ? null : cnsntel.trim();
}
public String getCnsnaddress() {
return cnsnaddress;
}
public void setCnsnaddress(String cnsnaddress) {
this.cnsnaddress = cnsnaddress == null ? null : cnsnaddress.trim();
}
public String getCnsnagent() {
return cnsnagent;
}
public void setCnsnagent(String cnsnagent) {
this.cnsnagent = cnsnagent == null ? null : cnsnagent.trim();
}
public BigDecimal getCarrycost() {
return carrycost;
}
public void setCarrycost(BigDecimal carrycost) {
this.carrycost = carrycost;
}
public BigDecimal getCarryrate() {
return carryrate;
}
public void setCarryrate(BigDecimal carryrate) {
this.carryrate = carryrate;
}
public BigDecimal getAgentcost() {
return agentcost;
}
public void setAgentcost(BigDecimal agentcost) {
this.agentcost = agentcost;
}
public BigDecimal getAgentrate() {
return agentrate;
}
public void setAgentrate(BigDecimal agentrate) {
this.agentrate = agentrate;
}
public BigDecimal getShippervalue() {
return shippervalue;
}
public void setShippervalue(BigDecimal shippervalue) {
this.shippervalue = shippervalue;
}
public BigDecimal getInsurevalue() {
return insurevalue;
}
public void setInsurevalue(BigDecimal insurevalue) {
this.insurevalue = insurevalue;
}
public BigDecimal getHbillqty() {
return hbillqty;
}
public void setHbillqty(BigDecimal hbillqty) {
this.hbillqty = hbillqty;
}
public BigDecimal getPcs() {
return pcs;
}
public void setPcs(BigDecimal pcs) {
this.pcs = pcs;
}
public BigDecimal getWeight() {
return weight;
}
public void setWeight(BigDecimal weight) {
this.weight = weight;
}
public BigDecimal getVol() {
return vol;
}
public void setVol(BigDecimal vol) {
this.vol = vol;
}
public BigDecimal getCurweek() {
return curweek;
}
public void setCurweek(BigDecimal curweek) {
this.curweek = curweek;
}
public BigDecimal getCurmonth() {
return curmonth;
}
public void setCurmonth(BigDecimal curmonth) {
this.curmonth = curmonth;
}
public BigDecimal getCuryear() {
return curyear;
}
public void setCuryear(BigDecimal curyear) {
this.curyear = curyear;
}
public Date getCreatetime() {
return createtime;
}
public void setCreatetime(Date createtime) {
this.createtime = createtime;
}
public Date getUpdatetime() {
return updatetime;
}
public void setUpdatetime(Date updatetime) {
this.updatetime = updatetime;
}
public String getCtrlopedepartment() {
return ctrlopedepartment;
}
public void setCtrlopedepartment(String ctrlopedepartment) {
this.ctrlopedepartment = ctrlopedepartment == null ? null : ctrlopedepartment.trim();
}
public String getWaybillfullnum() {
return waybillfullnum;
}
public void setWaybillfullnum(String waybillfullnum) {
this.waybillfullnum = waybillfullnum == null ? null : waybillfullnum.trim();
}
public String getImp() {
return imp;
}
public void setImp(String imp) {
this.imp = imp == null ? null : imp.trim();
}
public String getExp() {
return exp;
}
public void setExp(String exp) {
this.exp = exp == null ? null : exp.trim();
}
public BigDecimal getEndweek() {
return endweek;
}
public void setEndweek(BigDecimal endweek) {
this.endweek = endweek;
}
public BigDecimal getEndmonth() {
return endmonth;
}
public void setEndmonth(BigDecimal endmonth) {
this.endmonth = endmonth;
}
public BigDecimal getEndyear() {
return endyear;
}
public void setEndyear(BigDecimal endyear) {
this.endyear = endyear;
}
}