b644e3cee0934a02b8b9226c2de152059a0c9eaa.svn-base 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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.XmlType;
  5. /**
  6. * <p>isUamsValidUserByPhoneAndUserCode complex type的 Java 类。
  7. *
  8. * <p>以下模式片段指定包含在此类中的预期内容。
  9. *
  10. * <pre>
  11. * &lt;complexType name="isUamsValidUserByPhoneAndUserCode"&gt;
  12. * &lt;complexContent&gt;
  13. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  14. * &lt;sequence&gt;
  15. * &lt;element name="arg0" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
  16. * &lt;element name="arg1" type="{http://www.w3.org/2001/XMLSchema}string" 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 = "isUamsValidUserByPhoneAndUserCodes", propOrder = {
  25. "arg0",
  26. "arg1"
  27. })
  28. public class IsUamsValidUserByPhoneAndUserCode {
  29. protected String arg0;
  30. protected String arg1;
  31. /**
  32. * 获取arg0属性的值。
  33. *
  34. * @return possible object is
  35. * {@link String }
  36. */
  37. public String getArg0() {
  38. return arg0;
  39. }
  40. /**
  41. * 设置arg0属性的值。
  42. *
  43. * @param value allowed object is
  44. * {@link String }
  45. */
  46. public void setArg0(String value) {
  47. this.arg0 = value;
  48. }
  49. /**
  50. * 获取arg1属性的值。
  51. *
  52. * @return possible object is
  53. * {@link String }
  54. */
  55. public String getArg1() {
  56. return arg1;
  57. }
  58. /**
  59. * 设置arg1属性的值。
  60. *
  61. * @param value allowed object is
  62. * {@link String }
  63. */
  64. public void setArg1(String value) {
  65. this.arg1 = value;
  66. }
  67. }