| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- package cn.com.goldenwater.dcproj.webService.login;
- import javax.xml.bind.annotation.XmlAccessType;
- import javax.xml.bind.annotation.XmlAccessorType;
- import javax.xml.bind.annotation.XmlType;
- /**
- * <p>isUamsValidUserByPhoneAndUserCode complex type的 Java 类。
- *
- * <p>以下模式片段指定包含在此类中的预期内容。
- *
- * <pre>
- * <complexType name="isUamsValidUserByPhoneAndUserCode">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="arg0" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="arg1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- * </pre>
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "isUamsValidUserByPhoneAndUserCodes", propOrder = {
- "arg0",
- "arg1"
- })
- public class IsUamsValidUserByPhoneAndUserCode {
- protected String arg0;
- protected String arg1;
- /**
- * 获取arg0属性的值。
- *
- * @return possible object is
- * {@link String }
- */
- public String getArg0() {
- return arg0;
- }
- /**
- * 设置arg0属性的值。
- *
- * @param value allowed object is
- * {@link String }
- */
- public void setArg0(String value) {
- this.arg0 = value;
- }
- /**
- * 获取arg1属性的值。
- *
- * @return possible object is
- * {@link String }
- */
- public String getArg1() {
- return arg1;
- }
- /**
- * 设置arg1属性的值。
- *
- * @param value allowed object is
- * {@link String }
- */
- public void setArg1(String value) {
- this.arg1 = value;
- }
- }
|