OccurrenceDepartureLocationXml.java 971 字节
package com.agent.xml.deliveryInfo;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;

@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "OccurrenceDepartureLocation")
public class OccurrenceDepartureLocationXml {

	@XmlElement(name = "ID",required = false)
    private String id;
	
	@XmlElement(name = "Name",required = false)
    private String name;
	
	@XmlElement(name = "TypeCode",required = false)
    private String typecode;

	public String getId() {
		return id;
	}

	public void setId(String id) {
		this.id = id;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public String getTypecode() {
		return typecode;
	}

	public void setTypecode(String typecode) {
		this.typecode = typecode;
	}

}