D_B00001.java 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. /**
  2. * 系统服务
  3. */
  4. package com.miniframe.generate.comm.system;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * 个人信息查询
  9. */
  10. public class D_B00001 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String nickName;//昵称
  13. /**
  14. *昵称
  15. */
  16. public void setNickName(String nickName) {
  17. this.nickName=nickName;
  18. }
  19. /**
  20. *昵称
  21. */
  22. public String getNickName() {
  23. return this.nickName;
  24. }
  25. String userType;//用户类型
  26. /**
  27. *用户类型
  28. */
  29. public void setUserType(String userType) {
  30. this.userType=userType;
  31. }
  32. /**
  33. *用户类型
  34. */
  35. public String getUserType() {
  36. return this.userType;
  37. }
  38. String regTime;//注册时间
  39. /**
  40. *注册时间
  41. */
  42. public void setRegTime(String regTime) {
  43. this.regTime=regTime;
  44. }
  45. /**
  46. *注册时间
  47. */
  48. public String getRegTime() {
  49. return this.regTime;
  50. }
  51. String orgCode;//所属组织
  52. /**
  53. *所属组织
  54. */
  55. public void setOrgCode(String orgCode) {
  56. this.orgCode=orgCode;
  57. }
  58. /**
  59. *所属组织
  60. */
  61. public String getOrgCode() {
  62. return this.orgCode;
  63. }
  64. String orgDeptCode;//所属组织部门
  65. /**
  66. *所属组织部门
  67. */
  68. public void setOrgDeptCode(String orgDeptCode) {
  69. this.orgDeptCode=orgDeptCode;
  70. }
  71. /**
  72. *所属组织部门
  73. */
  74. public String getOrgDeptCode() {
  75. return this.orgDeptCode;
  76. }
  77. String userName;//用户名
  78. /**
  79. *用户名
  80. */
  81. public void setUserName(String userName) {
  82. this.userName=userName;
  83. }
  84. /**
  85. *用户名
  86. */
  87. public String getUserName() {
  88. return this.userName;
  89. }
  90. String mobileNo;//手机
  91. /**
  92. *手机
  93. */
  94. public void setMobileNo(String mobileNo) {
  95. this.mobileNo=mobileNo;
  96. }
  97. /**
  98. *手机
  99. */
  100. public String getMobileNo() {
  101. return this.mobileNo;
  102. }
  103. String headProfile;//头像
  104. /**
  105. *头像
  106. */
  107. public void setHeadProfile(String headProfile) {
  108. this.headProfile=headProfile;
  109. }
  110. /**
  111. *头像
  112. */
  113. public String getHeadProfile() {
  114. return this.headProfile;
  115. }
  116. String orgCodeText;//所属组织名称
  117. /**
  118. *所属组织名称
  119. */
  120. public void setOrgCodeText(String orgCodeText) {
  121. this.orgCodeText=orgCodeText;
  122. }
  123. /**
  124. *所属组织名称
  125. */
  126. public String getOrgCodeText() {
  127. return this.orgCodeText;
  128. }
  129. String orgDeptCodeText;//所属组织下部门名称
  130. /**
  131. *所属组织下部门名称
  132. */
  133. public void setOrgDeptCodeText(String orgDeptCodeText) {
  134. this.orgDeptCodeText=orgDeptCodeText;
  135. }
  136. /**
  137. *所属组织下部门名称
  138. */
  139. public String getOrgDeptCodeText() {
  140. return this.orgDeptCodeText;
  141. }
  142. String authenticationState;//认证状态
  143. /**
  144. *认证状态
  145. */
  146. public void setAuthenticationState(String authenticationState) {
  147. this.authenticationState=authenticationState;
  148. }
  149. /**
  150. *认证状态
  151. */
  152. public String getAuthenticationState() {
  153. return this.authenticationState;
  154. }
  155. String certName;//认证名称
  156. /**
  157. *认证名称
  158. */
  159. public void setCertName(String certName) {
  160. this.certName=certName;
  161. }
  162. /**
  163. *认证名称
  164. */
  165. public String getCertName() {
  166. return this.certName;
  167. }
  168. String certNo;//认证证件号
  169. /**
  170. *认证证件号
  171. */
  172. public void setCertNo(String certNo) {
  173. this.certNo=certNo;
  174. }
  175. /**
  176. *认证证件号
  177. */
  178. public String getCertNo() {
  179. return this.certNo;
  180. }
  181. String certType;//认证类型(0-个人,1-企业)
  182. /**
  183. *认证类型(0-个人,1-企业)
  184. */
  185. public void setCertType(String certType) {
  186. this.certType=certType;
  187. }
  188. /**
  189. *认证类型(0-个人,1-企业)
  190. */
  191. public String getCertType() {
  192. return this.certType;
  193. }
  194. String certTime;//认证时间
  195. /**
  196. *认证时间
  197. */
  198. public void setCertTime(String certTime) {
  199. this.certTime=certTime;
  200. }
  201. /**
  202. *认证时间
  203. */
  204. public String getCertTime() {
  205. return this.certTime;
  206. }
  207. String certFile;//认证文件
  208. /**
  209. *认证文件
  210. */
  211. public void setCertFile(String certFile) {
  212. this.certFile=certFile;
  213. }
  214. /**
  215. *认证文件
  216. */
  217. public String getCertFile() {
  218. return this.certFile;
  219. }
  220. String inviteCode;//我的邀请码
  221. /**
  222. *我的邀请码
  223. */
  224. public void setInviteCode(String inviteCode) {
  225. this.inviteCode=inviteCode;
  226. }
  227. /**
  228. *我的邀请码
  229. */
  230. public String getInviteCode() {
  231. return this.inviteCode;
  232. }
  233. String score;//积分
  234. /**
  235. *积分
  236. */
  237. public void setScore(String score) {
  238. this.score=score;
  239. }
  240. /**
  241. *积分
  242. */
  243. public String getScore() {
  244. return this.score;
  245. }
  246. String telNo;//联系电话
  247. /**
  248. *联系电话
  249. */
  250. public void setTelNo(String telNo) {
  251. this.telNo=telNo;
  252. }
  253. /**
  254. *联系电话
  255. */
  256. public String getTelNo() {
  257. return this.telNo;
  258. }
  259. String userState;//用户状态
  260. /**
  261. *用户状态
  262. */
  263. public void setUserState(String userState) {
  264. this.userState=userState;
  265. }
  266. /**
  267. *用户状态
  268. */
  269. public String getUserState() {
  270. return this.userState;
  271. }
  272. String personWords;//个性签名
  273. /**
  274. *个性签名
  275. */
  276. public void setPersonWords(String personWords) {
  277. this.personWords=personWords;
  278. }
  279. /**
  280. *个性签名
  281. */
  282. public String getPersonWords() {
  283. return this.personWords;
  284. }
  285. }