021b4067d6c4bee3032839ac0bfbcbae33785ac6.svn-base
1.13 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
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 = {
"args0"
})
@XmlRootElement(name = "exchangeInfo")
public class ExchangeInfo {
@XmlElementRef(name = "args0", type = JAXBElement.class, required = false)
protected JAXBElement<String> args0;
/**
* ��ȡargs0���Ե�ֵ��
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getArgs0() {
return args0;
}
/**
* ����args0���Ե�ֵ��
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setArgs0(JAXBElement<String> value) {
this.args0 = value;
}
}