0ec691d13c9d61a8af5e2ca6f2b07336549beebe.svn-base
1.16 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
package com.thinkgem.jeesite.modules.reg.web.bus.regist;
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;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"_return"
})
@XmlRootElement(name = "exchangeInfoResponse")
public class ExchangeInfoResponse {
@XmlElementRef(name = "return", type = JAXBElement.class, required = false)
protected JAXBElement<String> _return;
/**
* ��ȡreturn���Ե�ֵ��
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getReturn() {
return _return;
}
/**
* ����return���Ե�ֵ��
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setReturn(JAXBElement<String> value) {
this._return = value;
}
}