| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- 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;
- /**
- * <p>isUamsValidUserByPhoneAndUserCodeResponse complex type的 Java 类。
- *
- * <p>以下模式片段指定包含在此类中的预期内容。
- *
- * <pre>
- * <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>
- * </pre>
- */
- @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;
- }
- }
|