| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260 | /** * 系统服务 */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 <D_A00002_MENULIST_RECODE> menuList;//用户可用的菜单列表	/**	 *用户可用的菜单列表	 */	public void setMenuList(List <D_A00002_MENULIST_RECODE> menuList) {		this.menuList=menuList;	}	/**	 *用户可用的菜单列表	 */	public List <D_A00002_MENULIST_RECODE> getMenuList() {		return this.menuList;	}	List <D_A00002_ROLELIST_RECODE> roleList;//用户可用的角色列表	/**	 *用户可用的角色列表	 */	public void setRoleList(List <D_A00002_ROLELIST_RECODE> roleList) {		this.roleList=roleList;	}	/**	 *用户可用的角色列表	 */	public List <D_A00002_ROLELIST_RECODE> getRoleList() {		return this.roleList;	}	List <D_A00002_FUNCLIST_RECODE> funcList;//用户可用的功能列表	/**	 *用户可用的功能列表	 */	public void setFuncList(List <D_A00002_FUNCLIST_RECODE> funcList) {		this.funcList=funcList;	}	/**	 *用户可用的功能列表	 */	public List <D_A00002_FUNCLIST_RECODE> getFuncList() {		return this.funcList;	}}
 |