新火炬后端单体项目初始化代码
zhangherong
3 天以前 1c38849eebe0179b7ebad1db30b3335a41cc47e9
src/main/java/org/jeecg/modules/wms/request/WebServiceSendItem.java
@@ -1,70 +1,107 @@
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 java.io.Serializable;
import java.math.BigDecimal;
import javax.xml.bind.annotation.XmlType;
/**
 * <p>WebServiceSendItem complex type的 Java 类。
 *
 * <p>以下模式片段指定包含在此类中的预期内容。
 *
 * <pre>
 * &lt;complexType name="WebServiceSendItem"&gt;
 *   &lt;complexContent&gt;
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
 *       &lt;sequence&gt;
 *         &lt;element name="FactoryCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
 *         &lt;element name="SkuCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
 *         &lt;element name="Align" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
 *         &lt;element name="Pallet" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
 *         &lt;element name="PackageNo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
 *         &lt;element name="TrackLot" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
 *         &lt;element name="Series" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
 *         &lt;element name="MesStockID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
 *         &lt;element name="Quantity" type="{http://www.w3.org/2001/XMLSchema}decimal"/&gt;
 *         &lt;element name="SapTrackLot" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
 *         &lt;element name="Section" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
 *         &lt;element name="DestSection" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
 *         &lt;element name="SupplierCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
 *         &lt;element name="SupplierTrackLot" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
 *         &lt;element name="StageID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
 *         &lt;element name="Remark" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
 *         &lt;element name="OrderCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
 *       &lt;/sequence&gt;
 *     &lt;/restriction&gt;
 *   &lt;/complexContent&gt;
 * &lt;/complexType&gt;
 * </pre>
 *
 *
 */
@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
@XmlAccessorType(XmlAccessType.FIELD)
public class WebServiceSendItem implements Serializable {
    /**工厂编码 */
public class WebServiceSendItem {
    @XmlElement(name = "FactoryCode")
    private String factoryCode;
    /** 物料编码 */
    protected String factoryCode;
    @XmlElement(name = "SkuCode")
    private String skuCode;
    /** 预留号 */
    @XmlElement(name = "ReservationOrder")
    private String reservationOrder;
    /** 对齐方式 */
    protected String skuCode;
    @XmlElement(name = "Align")
    private String align;
    /** 托号 */
    protected String align;
    @XmlElement(name = "Pallet")
    private String pallet;
    /** 包装编码 */
    protected String pallet;
    @XmlElement(name = "PackageNo")
    private String packageNo;
    /** 批次号 */
    protected String packageNo;
    @XmlElement(name = "TrackLot")
    private String trackLot;
    /** 系列号 */
    protected long trackLot;
    @XmlElement(name = "Series")
    private String series;
    /** MES库存ID */
    protected long series;
    @XmlElement(name = "MesStockID")
    private String mesStockID;
    /** 数量 */
    @XmlElement(name = "Quantity")
    private BigDecimal quantity;
    /** SAP批次号 */
    protected String mesStockID;
    @XmlElement(name = "Quantity", required = true)
    protected BigDecimal quantity;
    @XmlElement(name = "SapTrackLot")
    private String sapTrackLot;
    /** 发送库存地 */
    protected String sapTrackLot;
    @XmlElement(name = "Section")
    private String section;
    /** 目标库存地 */
    protected String section;
    @XmlElement(name = "DestSection")
    private String destSection;
    /** 供应商代码 */
    protected String destSection;
    @XmlElement(name = "SupplierCode")
    private String supplierCode;
    /** 供应商批次号 */
    protected String supplierCode;
    @XmlElement(name = "SupplierTrackLot")
    private String supplierTrackLot;
    /** 阶段ID */
    protected String supplierTrackLot;
    @XmlElement(name = "StageID")
    private String stageID;
    /** 备注 */
    protected String stageID;
    @XmlElement(name = "Remark")
    private String remark;
    /** 订单编码 */
    protected String remark;
    @XmlElement(name = "OrderCode")
    private String orderCode;
    protected String orderCode;
}