From 0e19bbb301fd4efdcbf3285ade2a149db7d0a613 Mon Sep 17 00:00:00 2001 From: zhangherong <571457620@qq.com> Date: 星期五, 15 八月 2025 18:34:19 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- src/main/java/org/jeecg/modules/wms/dto/WebServiceSendItem.java | 107 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 107 insertions(+), 0 deletions(-) diff --git a/src/main/java/org/jeecg/modules/wms/dto/WebServiceSendItem.java b/src/main/java/org/jeecg/modules/wms/dto/WebServiceSendItem.java new file mode 100644 index 0000000..4db2e35 --- /dev/null +++ b/src/main/java/org/jeecg/modules/wms/dto/WebServiceSendItem.java @@ -0,0 +1,107 @@ + +package org.jeecg.modules.wms.dto; + +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; + + +/** + * <p>WebServiceSendItem complex type鐨� Java 绫汇�� + * + * <p>浠ヤ笅妯″紡鐗囨鎸囧畾鍖呭惈鍦ㄦ绫讳腑鐨勯鏈熷唴瀹广�� + * + * <pre> + * <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> + * </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 +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; +} -- Gitblit v1.9.3