/** * 系统服务 */ package com.miniframe.generate.comm.system; import com.miniframe.core.BaseMapModel; import java.io.Serializable; import java.util.*; /** * 登录 */ public class D_A00002 extends BaseMapModel implements Serializable { private static final long serialVersionUID = -1463838678425832212L; String nickName;//昵称 /** *昵称 */ public void setNickName(String nickName) { this.nickName=nickName; } /** *昵称 */ public String getNickName() { return this.nickName; } String userType;//用户类型 /** *用户类型 */ public void setUserType(String userType) { this.userType=userType; } /** *用户类型 */ public String getUserType() { return this.userType; } String regTime;//注册时间 /** *注册时间 */ public void setRegTime(String regTime) { this.regTime=regTime; } /** *注册时间 */ public String getRegTime() { return this.regTime; } String orgCode;//所属组织 /** *所属组织 */ public void setOrgCode(String orgCode) { this.orgCode=orgCode; } /** *所属组织 */ public String getOrgCode() { return this.orgCode; } String orgDeptCode;//所属组织部门 /** *所属组织部门 */ public void setOrgDeptCode(String orgDeptCode) { this.orgDeptCode=orgDeptCode; } /** *所属组织部门 */ public String getOrgDeptCode() { return this.orgDeptCode; } String userName;//用户名 /** *用户名 */ public void setUserName(String userName) { this.userName=userName; } /** *用户名 */ public String getUserName() { return this.userName; } String mobileNo;//手机 /** *手机 */ public void setMobileNo(String mobileNo) { this.mobileNo=mobileNo; } /** *手机 */ public String getMobileNo() { return this.mobileNo; } String headProfile;//头像 /** *头像 */ public void setHeadProfile(String headProfile) { this.headProfile=headProfile; } /** *头像 */ public String getHeadProfile() { return this.headProfile; } String authenticationState;//认证状态 /** *认证状态 */ public void setAuthenticationState(String authenticationState) { this.authenticationState=authenticationState; } /** *认证状态 */ public String getAuthenticationState() { return this.authenticationState; } String certName;//认证名称 /** *认证名称 */ public void setCertName(String certName) { this.certName=certName; } /** *认证名称 */ public String getCertName() { return this.certName; } String certNo;//认证证件号 /** *认证证件号 */ public void setCertNo(String certNo) { this.certNo=certNo; } /** *认证证件号 */ public String getCertNo() { return this.certNo; } String certType;//认证类型(0-个人,1-企业) /** *认证类型(0-个人,1-企业) */ public void setCertType(String certType) { this.certType=certType; } /** *认证类型(0-个人,1-企业) */ public String getCertType() { return this.certType; } String certTime;//认证时间 /** *认证时间 */ public void setCertTime(String certTime) { this.certTime=certTime; } /** *认证时间 */ public String getCertTime() { return this.certTime; } String certFile;//认证文件 /** *认证文件 */ public void setCertFile(String certFile) { this.certFile=certFile; } /** *认证文件 */ public String getCertFile() { return this.certFile; } String viewAll;//查看全部 /** *查看全部 */ public void setViewAll(String viewAll) { this.viewAll=viewAll; } /** *查看全部 */ public String getViewAll() { return this.viewAll; } String deleteEvidence;//删除证据 /** *删除证据 */ public void setDeleteEvidence(String deleteEvidence) { this.deleteEvidence=deleteEvidence; } /** *删除证据 */ public String getDeleteEvidence() { return this.deleteEvidence; } List menuList;//用户可用的菜单列表 /** *用户可用的菜单列表 */ public void setMenuList(List menuList) { this.menuList=menuList; } /** *用户可用的菜单列表 */ public List getMenuList() { return this.menuList; } List roleList;//用户可用的角色列表 /** *用户可用的角色列表 */ public void setRoleList(List roleList) { this.roleList=roleList; } /** *用户可用的角色列表 */ public List getRoleList() { return this.roleList; } List funcList;//用户可用的功能列表 /** *用户可用的功能列表 */ public void setFuncList(List funcList) { this.funcList=funcList; } /** *用户可用的功能列表 */ public List getFuncList() { return this.funcList; } }