GPS.java
1.1 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
package com.sy.bwAssist.commandInfo;
import com.thoughtworks.xstream.annotations.XStreamAlias;
/**
* @author zhangfan
* @web www.sy.com
* @company
* @time 2018-12-27 16:10
*/
public class GPS {
@XStreamAlias("VE_NAME")
private String veName;
@XStreamAlias("GPS_ID")
private String gpsId;
@XStreamAlias("ORIGIN_CUSTOMS")
private String opiginCostoms;
@XStreamAlias("DEST_CUSTOMS")
private String destCostoms;
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 getOpiginCostoms() {
return opiginCostoms;
}
public void setOpiginCostoms(String opiginCostoms) {
this.opiginCostoms = opiginCostoms;
}
public String getDestCostoms() {
return destCostoms;
}
public void setDestCostoms(String destCostoms) {
this.destCostoms = destCostoms;
}
}