package cn.com.goldenwater.dcproj.webService.login; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *
isUamsValidUserByPhoneAndUserCodeResponse complex type的 Java 类。 * *
以下模式片段指定包含在此类中的预期内容。 * *
* <complexType name="isUamsValidUserByPhoneAndUserCodeResponse">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="return" type="{http://uums.service.uums.dhcc.com.cn/}userExtInfo" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "isUamsValidUserByPhoneAndUserCodeResponse", propOrder = {
"_return"
})
public class IsUamsValidUserByPhoneAndUserCodeResponse {
@XmlElement(name = "return")
protected UserExtInfo _return;
/**
* 获取return属性的值。
*
* @return possible object is
* {@link UserExtInfo }
*/
public UserExtInfo getReturn() {
return _return;
}
/**
* 设置return属性的值。
*
* @param value allowed object is
* {@link UserExtInfo }
*/
public void setReturn(UserExtInfo value) {
this._return = value;
}
}