新火炬后端单体项目初始化代码
zhangherong
3 天以前 959e5318189e66ad58d07c5bb94789c815b4d2e9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
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 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
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;
}