91028e4181bafd3be47690e739080d6451da68c3.svn-base 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package cn.com.goldenwater.dcproj.webService.login;
  2. import javax.xml.bind.annotation.XmlAccessType;
  3. import javax.xml.bind.annotation.XmlAccessorType;
  4. import javax.xml.bind.annotation.XmlElement;
  5. import javax.xml.bind.annotation.XmlType;
  6. /**
  7. * <p>isUamsValidUserByPhoneAndUserCodeResponse complex type的 Java 类。
  8. *
  9. * <p>以下模式片段指定包含在此类中的预期内容。
  10. *
  11. * <pre>
  12. * &lt;complexType name="isUamsValidUserByPhoneAndUserCodeResponse"&gt;
  13. * &lt;complexContent&gt;
  14. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  15. * &lt;sequence&gt;
  16. * &lt;element name="return" type="{http://uums.service.uums.dhcc.com.cn/}userExtInfo" minOccurs="0"/&gt;
  17. * &lt;/sequence&gt;
  18. * &lt;/restriction&gt;
  19. * &lt;/complexContent&gt;
  20. * &lt;/complexType&gt;
  21. * </pre>
  22. */
  23. @XmlAccessorType(XmlAccessType.FIELD)
  24. @XmlType(name = "isUamsValidUserByPhoneAndUserCodeResponse", propOrder = {
  25. "_return"
  26. })
  27. public class IsUamsValidUserByPhoneAndUserCodeResponse {
  28. @XmlElement(name = "return")
  29. protected UserExtInfo _return;
  30. /**
  31. * 获取return属性的值。
  32. *
  33. * @return possible object is
  34. * {@link UserExtInfo }
  35. */
  36. public UserExtInfo getReturn() {
  37. return _return;
  38. }
  39. /**
  40. * 设置return属性的值。
  41. *
  42. * @param value allowed object is
  43. * {@link UserExtInfo }
  44. */
  45. public void setReturn(UserExtInfo value) {
  46. this._return = value;
  47. }
  48. }