GpsXmlEntity.java
1.0 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
package com.thinkgem.jeesite.modules.xml;
/**
* GPS信息
*/
import com.thoughtworks.xstream.annotations.XStreamAlias;
public class GpsXmlEntity {
@XStreamAlias("VE_NAME")
private String veName; // 海关车辆编号(值可以为空)
@XStreamAlias("GPS_ID")
private String gpsId; //GPS ID号
@XStreamAlias("ORIGIN_CUSTOMS")
private String originCustom; //源关区号
@XStreamAlias("DEST_CUSTOMS")
private String destCustoms; //目的关区号
public String getVeName() {
return veName;
}
public void setVeName(String veName) {
this.veName = veName;
}
public String getGpsId() {
return gpsId;
}
public void setGpsId(String gpsId) {
this.gpsId = gpsId;
}
public String getOriginCustom() {
return originCustom;
}
public void setOriginCustom(String originCustom) {
this.originCustom = originCustom;
}
public String getDestCustoms() {
return destCustoms;
}
public void setDestCustoms(String destCustoms) {
this.destCustoms = destCustoms;
}
}