MduCommonCommonAPIResponseOfSCTLTOWERModelDatauPUI5UtU.java
4.3 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
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* <p>MduCommon.CommonAPIResponseOfSCTLTOWERModel.Datau_PUI5utU complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* <complexType name="MduCommon.CommonAPIResponseOfSCTLTOWERModel.Datau_PUI5utU">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Data" type="{http://schemas.datacontract.org/2004/07/SCTLTOWER001.Models}SCTLTOWERModel.Data" minOccurs="0"/>
* <element name="Message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ResponseTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="Result" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MduCommon.CommonAPIResponseOfSCTLTOWERModel.Datau_PUI5utU", namespace = "http://schemas.datacontract.org/2004/07/Module.Common", propOrder = {
"data",
"message",
"responseTime",
"result"
})
@XmlSeeAlso({
SCTLTOWERModelReelMoveToWhereResponse.class
})
public class MduCommonCommonAPIResponseOfSCTLTOWERModelDatauPUI5UtU {
@XmlElementRef(name = "Data", namespace = "http://schemas.datacontract.org/2004/07/Module.Common", type = JAXBElement.class, required = false)
protected JAXBElement<SCTLTOWERModelData> data;
@XmlElementRef(name = "Message", namespace = "http://schemas.datacontract.org/2004/07/Module.Common", type = JAXBElement.class, required = false)
protected JAXBElement<String> message;
@XmlElement(name = "ResponseTime")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar responseTime;
@XmlElement(name = "Result")
protected Boolean result;
/**
* 获取data属性的值。
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link SCTLTOWERModelData }{@code >}
*
*/
public JAXBElement<SCTLTOWERModelData> getData() {
return data;
}
/**
* 设置data属性的值。
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link SCTLTOWERModelData }{@code >}
*
*/
public void setData(JAXBElement<SCTLTOWERModelData> value) {
this.data = value;
}
/**
* 获取message属性的值。
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getMessage() {
return message;
}
/**
* 设置message属性的值。
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setMessage(JAXBElement<String> value) {
this.message = value;
}
/**
* 获取responseTime属性的值。
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getResponseTime() {
return responseTime;
}
/**
* 设置responseTime属性的值。
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setResponseTime(XMLGregorianCalendar value) {
this.responseTime = value;
}
/**
* 获取result属性的值。
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isResult() {
return result;
}
/**
* 设置result属性的值。
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setResult(Boolean value) {
this.result = value;
}
}