SCTLTOWERModelData.java
6.0 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
package StSys.RoyoTech.client;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlType;
/**
* <p>SCTLTOWERModel.Data complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* <complexType name="SCTLTOWERModel.Data">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Barcode2D" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="FromWhere" type="{http://schemas.datacontract.org/2004/07/SCTLTOWER001.Models}SCTLTOWERModel.FromWhere" minOccurs="0"/>
* <element name="HardwareGroupId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Thickness" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ToWhere" type="{http://schemas.datacontract.org/2004/07/SCTLTOWER001.Models}SCTLTOWERModel.ToWhere" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SCTLTOWERModel.Data", propOrder = {
"barcode2D",
"fromWhere",
"hardwareGroupId",
"size",
"thickness",
"toWhere"
})
public class SCTLTOWERModelData {
@XmlElementRef(name = "Barcode2D", namespace = "http://schemas.datacontract.org/2004/07/SCTLTOWER001.Models", type = JAXBElement.class, required = false)
protected JAXBElement<String> barcode2D;
@XmlElementRef(name = "FromWhere", namespace = "http://schemas.datacontract.org/2004/07/SCTLTOWER001.Models", type = JAXBElement.class, required = false)
protected JAXBElement<SCTLTOWERModelFromWhere> fromWhere;
@XmlElement(name = "HardwareGroupId")
protected Integer hardwareGroupId;
@XmlElementRef(name = "Size", namespace = "http://schemas.datacontract.org/2004/07/SCTLTOWER001.Models", type = JAXBElement.class, required = false)
protected JAXBElement<String> size;
@XmlElementRef(name = "Thickness", namespace = "http://schemas.datacontract.org/2004/07/SCTLTOWER001.Models", type = JAXBElement.class, required = false)
protected JAXBElement<String> thickness;
@XmlElementRef(name = "ToWhere", namespace = "http://schemas.datacontract.org/2004/07/SCTLTOWER001.Models", type = JAXBElement.class, required = false)
protected JAXBElement<SCTLTOWERModelToWhere> toWhere;
/**
* 获取barcode2D属性的值。
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getBarcode2D() {
return barcode2D;
}
/**
* 设置barcode2D属性的值。
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setBarcode2D(JAXBElement<String> value) {
this.barcode2D = value;
}
/**
* 获取fromWhere属性的值。
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link SCTLTOWERModelFromWhere }{@code >}
*
*/
public JAXBElement<SCTLTOWERModelFromWhere> getFromWhere() {
return fromWhere;
}
/**
* 设置fromWhere属性的值。
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link SCTLTOWERModelFromWhere }{@code >}
*
*/
public void setFromWhere(JAXBElement<SCTLTOWERModelFromWhere> value) {
this.fromWhere = value;
}
/**
* 获取hardwareGroupId属性的值。
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getHardwareGroupId() {
return hardwareGroupId;
}
/**
* 设置hardwareGroupId属性的值。
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setHardwareGroupId(Integer value) {
this.hardwareGroupId = value;
}
/**
* 获取size属性的值。
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getSize() {
return size;
}
/**
* 设置size属性的值。
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setSize(JAXBElement<String> value) {
this.size = value;
}
/**
* 获取thickness属性的值。
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getThickness() {
return thickness;
}
/**
* 设置thickness属性的值。
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setThickness(JAXBElement<String> value) {
this.thickness = value;
}
/**
* 获取toWhere属性的值。
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link SCTLTOWERModelToWhere }{@code >}
*
*/
public JAXBElement<SCTLTOWERModelToWhere> getToWhere() {
return toWhere;
}
/**
* 设置toWhere属性的值。
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link SCTLTOWERModelToWhere }{@code >}
*
*/
public void setToWhere(JAXBElement<SCTLTOWERModelToWhere> value) {
this.toWhere = value;
}
}