package com.chinaztt.mes.common.gsm.in; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

InStorageListAddModel complex type�� Java �ࡣ * *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� * *

 * <complexType name="InStorageListAddModel">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="InStorageSingleAddModelList" type="{http://tempuri.org/}ArrayOfInStorageSingleAddModel" 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 = "InStorageListAddModel", propOrder = { "inStorageSingleAddModelList", "salesServiceKey", "isJosn" }) public class InStorageListAddModel { @XmlElement(name = "InStorageSingleAddModelList") protected ArrayOfInStorageSingleAddModel inStorageSingleAddModelList; @XmlElement(name = "SalesServiceKey") protected String salesServiceKey; protected String isJosn; /** * ��ȡinStorageSingleAddModelList���Ե�ֵ�� * * @return * possible object is * {@link ArrayOfInStorageSingleAddModel } * */ public ArrayOfInStorageSingleAddModel getInStorageSingleAddModelList() { return inStorageSingleAddModelList; } /** * ����inStorageSingleAddModelList���Ե�ֵ�� * * @param value * allowed object is * {@link ArrayOfInStorageSingleAddModel } * */ public void setInStorageSingleAddModelList(ArrayOfInStorageSingleAddModel value) { this.inStorageSingleAddModelList = 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; } }