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; /** *
OutStorageSingleDeleteModel complex type�� Java �ࡣ * *
����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� * *
* <complexType name="OutStorageSingleDeleteModel"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="SalesServiceKey" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="AutoID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="contractid" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="ContractInfo_Product_AutoID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="EntryPeople" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="EntryPeopleWorkCode" 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 = "OutStorageSingleDeleteModel", propOrder = { "salesServiceKey", "autoID", "contractid", "contractInfoProductAutoID", "entryPeople", "entryPeopleWorkCode", "isJosn" }) public class OutStorageSingleDeleteModel { @XmlElement(name = "SalesServiceKey") protected String salesServiceKey; @XmlElement(name = "AutoID") protected String autoID; protected String contractid; @XmlElement(name = "ContractInfo_Product_AutoID") protected String contractInfoProductAutoID; @XmlElement(name = "EntryPeople") protected String entryPeople; @XmlElement(name = "EntryPeopleWorkCode") protected String entryPeopleWorkCode; protected String isJosn; /** * ��ȡ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; } /** * ��ȡautoID���Ե�ֵ�� * * @return * possible object is * {@link String } * */ public String getAutoID() { return autoID; } /** * ����autoID���Ե�ֵ�� * * @param value * allowed object is * {@link String } * */ public void setAutoID(String value) { this.autoID = value; } /** * ��ȡcontractid���Ե�ֵ�� * * @return * possible object is * {@link String } * */ public String getContractid() { return contractid; } /** * ����contractid���Ե�ֵ�� * * @param value * allowed object is * {@link String } * */ public void setContractid(String value) { this.contractid = value; } /** * ��ȡcontractInfoProductAutoID���Ե�ֵ�� * * @return * possible object is * {@link String } * */ public String getContractInfoProductAutoID() { return contractInfoProductAutoID; } /** * ����contractInfoProductAutoID���Ե�ֵ�� * * @param value * allowed object is * {@link String } * */ public void setContractInfoProductAutoID(String value) { this.contractInfoProductAutoID = value; } /** * ��ȡentryPeople���Ե�ֵ�� * * @return * possible object is * {@link String } * */ public String getEntryPeople() { return entryPeople; } /** * ����entryPeople���Ե�ֵ�� * * @param value * allowed object is * {@link String } * */ public void setEntryPeople(String value) { this.entryPeople = value; } /** * ��ȡentryPeopleWorkCode���Ե�ֵ�� * * @return * possible object is * {@link String } * */ public String getEntryPeopleWorkCode() { return entryPeopleWorkCode; } /** * ����entryPeopleWorkCode���Ե�ֵ�� * * @param value * allowed object is * {@link String } * */ public void setEntryPeopleWorkCode(String value) { this.entryPeopleWorkCode = 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; } }