package org.jeecg.modules.wms.request; import lombok.Getter; import lombok.Setter; import java.math.BigDecimal; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

WebServiceSendItem complex type的 Java 类。 * *

以下模式片段指定包含在此类中的预期内容。 * *

 * <complexType name="WebServiceSendItem">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="FactoryCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="SkuCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Align" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Pallet" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="PackageNo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="TrackLot" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="Series" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="MesStockID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Quantity" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
 *         <element name="SapTrackLot" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Section" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="DestSection" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="SupplierCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="SupplierTrackLot" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="StageID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Remark" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="OrderCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WebServiceSendItem", propOrder = { "factoryCode", "skuCode", "align", "pallet", "packageNo", "trackLot", "series", "mesStockID", "quantity", "sapTrackLot", "section", "destSection", "supplierCode", "supplierTrackLot", "stageID", "remark", "orderCode" }) @Getter @Setter public class WebServiceSendItem { @XmlElement(name = "FactoryCode") protected String factoryCode; @XmlElement(name = "SkuCode") protected String skuCode; @XmlElement(name = "Align") protected String align; @XmlElement(name = "Pallet") protected String pallet; @XmlElement(name = "PackageNo") protected String packageNo; @XmlElement(name = "TrackLot") protected long trackLot; @XmlElement(name = "Series") protected long series; @XmlElement(name = "MesStockID") protected String mesStockID; @XmlElement(name = "Quantity", required = true) protected BigDecimal quantity; @XmlElement(name = "SapTrackLot") protected String sapTrackLot; @XmlElement(name = "Section") protected String section; @XmlElement(name = "DestSection") protected String destSection; @XmlElement(name = "SupplierCode") protected String supplierCode; @XmlElement(name = "SupplierTrackLot") protected String supplierTrackLot; @XmlElement(name = "StageID") protected String stageID; @XmlElement(name = "Remark") protected String remark; @XmlElement(name = "OrderCode") protected String orderCode; }