|
package com.chinaztt.mes.common.gsm.out;
|
|
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="OutStorageSingleDeleteModel" type="{http://tempuri.org/}OutStorageSingleDeleteModel" minOccurs="0"/>
|
* </sequence>
|
* </restriction>
|
* </complexContent>
|
* </complexType>
|
* </pre>
|
*
|
*
|
*/
|
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlType(name = "", propOrder = {
|
"outStorageSingleDeleteModel"
|
})
|
@XmlRootElement(name = "SingleDelete")
|
public class SingleDelete {
|
|
@XmlElement(name = "OutStorageSingleDeleteModel")
|
protected OutStorageSingleDeleteModel outStorageSingleDeleteModel;
|
|
/**
|
* ��ȡoutStorageSingleDeleteModel���Ե�ֵ��
|
*
|
* @return
|
* possible object is
|
* {@link OutStorageSingleDeleteModel }
|
*
|
*/
|
public OutStorageSingleDeleteModel getOutStorageSingleDeleteModel() {
|
return outStorageSingleDeleteModel;
|
}
|
|
/**
|
* ����outStorageSingleDeleteModel���Ե�ֵ��
|
*
|
* @param value
|
* allowed object is
|
* {@link OutStorageSingleDeleteModel }
|
*
|
*/
|
public void setOutStorageSingleDeleteModel(OutStorageSingleDeleteModel value) {
|
this.outStorageSingleDeleteModel = value;
|
}
|
|
}
|