|
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.XmlType;
|
|
|
/**
|
* <p>EscortSingleDeleteModel complex type�� Java �ࡣ
|
*
|
* <p>����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ�
|
*
|
* <pre>
|
* <complexType name="EscortSingleDeleteModel">
|
* <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="ID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="EscortNo" 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>
|
* </pre>
|
*
|
*
|
*/
|
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlType(name = "EscortSingleDeleteModel", propOrder = {
|
"salesServiceKey",
|
"id",
|
"escortNo",
|
"entryPeople",
|
"entryPeopleWorkCode",
|
"isJosn"
|
})
|
public class EscortSingleDeleteModel {
|
|
@XmlElement(name = "SalesServiceKey")
|
protected String salesServiceKey;
|
@XmlElement(name = "ID")
|
protected String id;
|
@XmlElement(name = "EscortNo")
|
protected String escortNo;
|
@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;
|
}
|
|
/**
|
* ��ȡid���Ե�ֵ��
|
*
|
* @return
|
* possible object is
|
* {@link String }
|
*
|
*/
|
public String getID() {
|
return id;
|
}
|
|
/**
|
* ����id���Ե�ֵ��
|
*
|
* @param value
|
* allowed object is
|
* {@link String }
|
*
|
*/
|
public void setID(String value) {
|
this.id = value;
|
}
|
|
/**
|
* ��ȡescortNo���Ե�ֵ��
|
*
|
* @return
|
* possible object is
|
* {@link String }
|
*
|
*/
|
public String getEscortNo() {
|
return escortNo;
|
}
|
|
/**
|
* ����escortNo���Ե�ֵ��
|
*
|
* @param value
|
* allowed object is
|
* {@link String }
|
*
|
*/
|
public void setEscortNo(String value) {
|
this.escortNo = 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;
|
}
|
|
}
|