ReelMoveToWhereReq.java
2.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
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.XmlElementRef;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="reelMoveToWhereRequest" type="{http://schemas.datacontract.org/2004/07/SCTLTOWER001.Models}SCTLTOWERModel.ReelMoveToWhereRequest" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"reelMoveToWhereRequest"
})
@XmlRootElement(name = "ReelMoveToWhereReq", namespace = "http://tempuri.org/")
public class ReelMoveToWhereReq {
@XmlElementRef(name = "reelMoveToWhereRequest", namespace = "http://tempuri.org/", type = JAXBElement.class, required = false)
protected JAXBElement<SCTLTOWERModelReelMoveToWhereRequest> reelMoveToWhereRequest;
/**
* 获取reelMoveToWhereRequest属性的值。
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link SCTLTOWERModelReelMoveToWhereRequest }{@code >}
*
*/
public JAXBElement<SCTLTOWERModelReelMoveToWhereRequest> getReelMoveToWhereRequest() {
return reelMoveToWhereRequest;
}
/**
* 设置reelMoveToWhereRequest属性的值。
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link SCTLTOWERModelReelMoveToWhereRequest }{@code >}
*
*/
public void setReelMoveToWhereRequest(JAXBElement<SCTLTOWERModelReelMoveToWhereRequest> value) {
this.reelMoveToWhereRequest = value;
}
}