Trailer.java
812 字节
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
package com.sy.bwAssist;
import com.sy.utils.NumberConverter;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamConverter;
import java.math.BigDecimal;
@XStreamAlias("TRAILER")
public class Trailer {
@XStreamAlias("TR_EC_NO")
private String trEcNo;
@XStreamAlias("TR_NAME")
private String TrName;
@XStreamAlias("TR_WT")
@XStreamConverter(value=NumberConverter.class)
private BigDecimal TrWt;
public String getTrEcNo() {
return trEcNo;
}
public void setTrEcNo(String trEcNo) {
this.trEcNo = trEcNo;
}
public String getTrName() {
return TrName;
}
public void setTrName(String trName) {
TrName = trName;
}
public BigDecimal getTrWt() {
return TrWt;
}
public void setTrWt(BigDecimal trWt) {
TrWt = trWt;
}
}