package cn.com.goldenwater.dcproj.webService.login; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** *

roleInfo complex type的 Java 类。 * *

以下模式片段指定包含在此类中的预期内容。 * *

 * <complexType name="roleInfo">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="jurdAreaType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="modifier" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="note" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="orgCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="orgJurd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="orgName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="roleCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="roleDesc" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="roleId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="roleName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="roleType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="scode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="sname" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="ts" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "roleInfo", propOrder = { "jurdAreaType", "modifier", "note", "orgCode", "orgJurd", "orgName", "roleCode", "roleDesc", "roleId", "roleName", "roleType", "scode", "sname", "status", "ts" }) public class RoleInfo { protected String jurdAreaType; protected String modifier; protected String note; protected String orgCode; protected String orgJurd; protected String orgName; protected String roleCode; protected String roleDesc; protected String roleId; protected String roleName; protected String roleType; protected String scode; protected String sname; protected String status; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ts; /** * 获取jurdAreaType属性的值。 * * @return possible object is * {@link String } */ public String getJurdAreaType() { return jurdAreaType; } /** * 设置jurdAreaType属性的值。 * * @param value allowed object is * {@link String } */ public void setJurdAreaType(String value) { this.jurdAreaType = value; } /** * 获取modifier属性的值。 * * @return possible object is * {@link String } */ public String getModifier() { return modifier; } /** * 设置modifier属性的值。 * * @param value allowed object is * {@link String } */ public void setModifier(String value) { this.modifier = value; } /** * 获取note属性的值。 * * @return possible object is * {@link String } */ public String getNote() { return note; } /** * 设置note属性的值。 * * @param value allowed object is * {@link String } */ public void setNote(String value) { this.note = value; } /** * 获取orgCode属性的值。 * * @return possible object is * {@link String } */ public String getOrgCode() { return orgCode; } /** * 设置orgCode属性的值。 * * @param value allowed object is * {@link String } */ public void setOrgCode(String value) { this.orgCode = value; } /** * 获取orgJurd属性的值。 * * @return possible object is * {@link String } */ public String getOrgJurd() { return orgJurd; } /** * 设置orgJurd属性的值。 * * @param value allowed object is * {@link String } */ public void setOrgJurd(String value) { this.orgJurd = value; } /** * 获取orgName属性的值。 * * @return possible object is * {@link String } */ public String getOrgName() { return orgName; } /** * 设置orgName属性的值。 * * @param value allowed object is * {@link String } */ public void setOrgName(String value) { this.orgName = value; } /** * 获取roleCode属性的值。 * * @return possible object is * {@link String } */ public String getRoleCode() { return roleCode; } /** * 设置roleCode属性的值。 * * @param value allowed object is * {@link String } */ public void setRoleCode(String value) { this.roleCode = value; } /** * 获取roleDesc属性的值。 * * @return possible object is * {@link String } */ public String getRoleDesc() { return roleDesc; } /** * 设置roleDesc属性的值。 * * @param value allowed object is * {@link String } */ public void setRoleDesc(String value) { this.roleDesc = value; } /** * 获取roleId属性的值。 * * @return possible object is * {@link String } */ public String getRoleId() { return roleId; } /** * 设置roleId属性的值。 * * @param value allowed object is * {@link String } */ public void setRoleId(String value) { this.roleId = value; } /** * 获取roleName属性的值。 * * @return possible object is * {@link String } */ public String getRoleName() { return roleName; } /** * 设置roleName属性的值。 * * @param value allowed object is * {@link String } */ public void setRoleName(String value) { this.roleName = value; } /** * 获取roleType属性的值。 * * @return possible object is * {@link String } */ public String getRoleType() { return roleType; } /** * 设置roleType属性的值。 * * @param value allowed object is * {@link String } */ public void setRoleType(String value) { this.roleType = value; } /** * 获取scode属性的值。 * * @return possible object is * {@link String } */ public String getScode() { return scode; } /** * 设置scode属性的值。 * * @param value allowed object is * {@link String } */ public void setScode(String value) { this.scode = value; } /** * 获取sname属性的值。 * * @return possible object is * {@link String } */ public String getSname() { return sname; } /** * 设置sname属性的值。 * * @param value allowed object is * {@link String } */ public void setSname(String value) { this.sname = value; } /** * 获取status属性的值。 * * @return possible object is * {@link String } */ public String getStatus() { return status; } /** * 设置status属性的值。 * * @param value allowed object is * {@link String } */ public void setStatus(String value) { this.status = value; } /** * 获取ts属性的值。 * * @return possible object is * {@link XMLGregorianCalendar } */ public XMLGregorianCalendar getTs() { return ts; } /** * 设置ts属性的值。 * * @param value allowed object is * {@link XMLGregorianCalendar } */ public void setTs(XMLGregorianCalendar value) { this.ts = value; } }