Car.java
1.2 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
package com.sy.bwAssist.gatherInfo;
import com.sy.utils.NumberConverter;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamConverter;
import java.math.BigDecimal;
@XStreamAlias("CAR")
public class Car {
@XStreamAlias("VE_NAME")
private String VeName;
@XStreamAlias("CAR_EC_NO")
private String CarEcNo;
@XStreamAlias("CAR_EC_NO2")
private String CarEcNo2;
@XStreamAlias("VE_CUSTOMS_NO")
private String VeCustomsNo;
@XStreamAlias("VE_WT")
@XStreamConverter(value=NumberConverter.class)
private BigDecimal VeWt;
public String getVeName() {
return VeName;
}
public void setVeName(String veName) {
VeName = veName;
}
public String getCarEcNo() {
return CarEcNo;
}
public void setCarEcNo(String carEcNo) {
CarEcNo = carEcNo;
}
public String getCarEcNo2() {
return CarEcNo2;
}
public void setCarEcNo2(String carEcNo2) {
CarEcNo2 = carEcNo2;
}
public String getVeCustomsNo() {
return VeCustomsNo;
}
public void setVeCustomsNo(String veCustomsNo) {
VeCustomsNo = veCustomsNo;
}
public BigDecimal getVeWt() {
return VeWt;
}
public void setVeWt(BigDecimal veWt) {
VeWt = veWt;
}
}