|
package com.chinaztt.mes.common.gsm.escort;
|
|
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;
|
|
|
/**
|
* <p>anonymous complex type�� Java �ࡣ
|
*
|
* <p>����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ�
|
*
|
* <pre>
|
* <complexType>
|
* <complexContent>
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <sequence>
|
* <element name="EscortSingleAddModel" type="{http://tempuri.org/}EscortSingleAddModel" minOccurs="0"/>
|
* </sequence>
|
* </restriction>
|
* </complexContent>
|
* </complexType>
|
* </pre>
|
*
|
*
|
*/
|
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlType(name = "", propOrder = {
|
"escortSingleAddModel"
|
})
|
@XmlRootElement(name = "SingleAdd")
|
public class SingleAdd {
|
|
@XmlElement(name = "EscortSingleAddModel")
|
protected EscortSingleAddModel escortSingleAddModel;
|
|
/**
|
* ��ȡescortSingleAddModel���Ե�ֵ��
|
*
|
* @return
|
* possible object is
|
* {@link EscortSingleAddModel }
|
*
|
*/
|
public EscortSingleAddModel getEscortSingleAddModel() {
|
return escortSingleAddModel;
|
}
|
|
/**
|
* ����escortSingleAddModel���Ե�ֵ��
|
*
|
* @param value
|
* allowed object is
|
* {@link EscortSingleAddModel }
|
*
|
*/
|
public void setEscortSingleAddModel(EscortSingleAddModel value) {
|
this.escortSingleAddModel = value;
|
}
|
|
}
|