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.XmlType; /** *
OutStorageListAddModel complex type�� Java �ࡣ * *
����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� * *
* <complexType name="OutStorageListAddModel"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="OutStorageSingleAddModelList" type="{http://tempuri.org/}ArrayOfOutStorageSingleAddModel" minOccurs="0"/> * <element name="SalesServiceKey" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="isJosn" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> ** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OutStorageListAddModel", propOrder = { "outStorageSingleAddModelList", "salesServiceKey", "isJosn" }) public class OutStorageListAddModel { @XmlElement(name = "OutStorageSingleAddModelList") protected ArrayOfOutStorageSingleAddModel outStorageSingleAddModelList; @XmlElement(name = "SalesServiceKey") protected String salesServiceKey; protected String isJosn; /** * ��ȡoutStorageSingleAddModelList���Ե�ֵ�� * * @return * possible object is * {@link ArrayOfOutStorageSingleAddModel } * */ public ArrayOfOutStorageSingleAddModel getOutStorageSingleAddModelList() { return outStorageSingleAddModelList; } /** * ����outStorageSingleAddModelList���Ե�ֵ�� * * @param value * allowed object is * {@link ArrayOfOutStorageSingleAddModel } * */ public void setOutStorageSingleAddModelList(ArrayOfOutStorageSingleAddModel value) { this.outStorageSingleAddModelList = value; } /** * ��ȡsalesServiceKey���Ե�ֵ�� * * @return * possible object is * {@link String } * */ public String getSalesServiceKey() { return salesServiceKey; } /** * ����salesServiceKey���Ե�ֵ�� * * @param value * allowed object is * {@link String } * */ public void setSalesServiceKey(String value) { this.salesServiceKey = value; } /** * ��ȡisJosn���Ե�ֵ�� * * @return * possible object is * {@link String } * */ public String getIsJosn() { return isJosn; } /** * ����isJosn���Ե�ֵ�� * * @param value * allowed object is * {@link String } * */ public void setIsJosn(String value) { this.isJosn = value; } }