D_A00002.java 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. /**
  2. * 系统服务
  3. */
  4. package com.miniframe.generate.comm.system;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. import java.util.*;
  8. /**
  9. * 登录
  10. */
  11. public class D_A00002 extends BaseMapModel implements Serializable {
  12. private static final long serialVersionUID = -1463838678425832212L;
  13. String nickName;//昵称
  14. /**
  15. *昵称
  16. */
  17. public void setNickName(String nickName) {
  18. this.nickName=nickName;
  19. }
  20. /**
  21. *昵称
  22. */
  23. public String getNickName() {
  24. return this.nickName;
  25. }
  26. String userType;//用户类型
  27. /**
  28. *用户类型
  29. */
  30. public void setUserType(String userType) {
  31. this.userType=userType;
  32. }
  33. /**
  34. *用户类型
  35. */
  36. public String getUserType() {
  37. return this.userType;
  38. }
  39. String regTime;//注册时间
  40. /**
  41. *注册时间
  42. */
  43. public void setRegTime(String regTime) {
  44. this.regTime=regTime;
  45. }
  46. /**
  47. *注册时间
  48. */
  49. public String getRegTime() {
  50. return this.regTime;
  51. }
  52. String orgCode;//所属组织
  53. /**
  54. *所属组织
  55. */
  56. public void setOrgCode(String orgCode) {
  57. this.orgCode=orgCode;
  58. }
  59. /**
  60. *所属组织
  61. */
  62. public String getOrgCode() {
  63. return this.orgCode;
  64. }
  65. String orgDeptCode;//所属组织部门
  66. /**
  67. *所属组织部门
  68. */
  69. public void setOrgDeptCode(String orgDeptCode) {
  70. this.orgDeptCode=orgDeptCode;
  71. }
  72. /**
  73. *所属组织部门
  74. */
  75. public String getOrgDeptCode() {
  76. return this.orgDeptCode;
  77. }
  78. String userName;//用户名
  79. /**
  80. *用户名
  81. */
  82. public void setUserName(String userName) {
  83. this.userName=userName;
  84. }
  85. /**
  86. *用户名
  87. */
  88. public String getUserName() {
  89. return this.userName;
  90. }
  91. String mobileNo;//手机
  92. /**
  93. *手机
  94. */
  95. public void setMobileNo(String mobileNo) {
  96. this.mobileNo=mobileNo;
  97. }
  98. /**
  99. *手机
  100. */
  101. public String getMobileNo() {
  102. return this.mobileNo;
  103. }
  104. String headProfile;//头像
  105. /**
  106. *头像
  107. */
  108. public void setHeadProfile(String headProfile) {
  109. this.headProfile=headProfile;
  110. }
  111. /**
  112. *头像
  113. */
  114. public String getHeadProfile() {
  115. return this.headProfile;
  116. }
  117. String authenticationState;//认证状态
  118. /**
  119. *认证状态
  120. */
  121. public void setAuthenticationState(String authenticationState) {
  122. this.authenticationState=authenticationState;
  123. }
  124. /**
  125. *认证状态
  126. */
  127. public String getAuthenticationState() {
  128. return this.authenticationState;
  129. }
  130. String certName;//认证名称
  131. /**
  132. *认证名称
  133. */
  134. public void setCertName(String certName) {
  135. this.certName=certName;
  136. }
  137. /**
  138. *认证名称
  139. */
  140. public String getCertName() {
  141. return this.certName;
  142. }
  143. String certNo;//认证证件号
  144. /**
  145. *认证证件号
  146. */
  147. public void setCertNo(String certNo) {
  148. this.certNo=certNo;
  149. }
  150. /**
  151. *认证证件号
  152. */
  153. public String getCertNo() {
  154. return this.certNo;
  155. }
  156. String certType;//认证类型(0-个人,1-企业)
  157. /**
  158. *认证类型(0-个人,1-企业)
  159. */
  160. public void setCertType(String certType) {
  161. this.certType=certType;
  162. }
  163. /**
  164. *认证类型(0-个人,1-企业)
  165. */
  166. public String getCertType() {
  167. return this.certType;
  168. }
  169. String certTime;//认证时间
  170. /**
  171. *认证时间
  172. */
  173. public void setCertTime(String certTime) {
  174. this.certTime=certTime;
  175. }
  176. /**
  177. *认证时间
  178. */
  179. public String getCertTime() {
  180. return this.certTime;
  181. }
  182. String certFile;//认证文件
  183. /**
  184. *认证文件
  185. */
  186. public void setCertFile(String certFile) {
  187. this.certFile=certFile;
  188. }
  189. /**
  190. *认证文件
  191. */
  192. public String getCertFile() {
  193. return this.certFile;
  194. }
  195. String viewAll;//查看全部
  196. /**
  197. *查看全部
  198. */
  199. public void setViewAll(String viewAll) {
  200. this.viewAll=viewAll;
  201. }
  202. /**
  203. *查看全部
  204. */
  205. public String getViewAll() {
  206. return this.viewAll;
  207. }
  208. String deleteEvidence;//删除证据
  209. /**
  210. *删除证据
  211. */
  212. public void setDeleteEvidence(String deleteEvidence) {
  213. this.deleteEvidence=deleteEvidence;
  214. }
  215. /**
  216. *删除证据
  217. */
  218. public String getDeleteEvidence() {
  219. return this.deleteEvidence;
  220. }
  221. List <D_A00002_MENULIST_RECODE> menuList;//用户可用的菜单列表
  222. /**
  223. *用户可用的菜单列表
  224. */
  225. public void setMenuList(List <D_A00002_MENULIST_RECODE> menuList) {
  226. this.menuList=menuList;
  227. }
  228. /**
  229. *用户可用的菜单列表
  230. */
  231. public List <D_A00002_MENULIST_RECODE> getMenuList() {
  232. return this.menuList;
  233. }
  234. List <D_A00002_ROLELIST_RECODE> roleList;//用户可用的角色列表
  235. /**
  236. *用户可用的角色列表
  237. */
  238. public void setRoleList(List <D_A00002_ROLELIST_RECODE> roleList) {
  239. this.roleList=roleList;
  240. }
  241. /**
  242. *用户可用的角色列表
  243. */
  244. public List <D_A00002_ROLELIST_RECODE> getRoleList() {
  245. return this.roleList;
  246. }
  247. List <D_A00002_FUNCLIST_RECODE> funcList;//用户可用的功能列表
  248. /**
  249. *用户可用的功能列表
  250. */
  251. public void setFuncList(List <D_A00002_FUNCLIST_RECODE> funcList) {
  252. this.funcList=funcList;
  253. }
  254. /**
  255. *用户可用的功能列表
  256. */
  257. public List <D_A00002_FUNCLIST_RECODE> getFuncList() {
  258. return this.funcList;
  259. }
  260. }