GpsXmlEntity.java 1.0 KB
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;
	}
}