UserIdentity.java 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987
  1. package com.goafanti.common.model;
  2. import java.math.BigDecimal;
  3. import java.util.Date;
  4. import javax.validation.constraints.Size;
  5. import com.goafanti.common.constant.ErrorConstants;
  6. public class UserIdentity {
  7. /**
  8. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.id
  9. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  10. */
  11. private String id;
  12. /**
  13. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.uid
  14. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  15. */
  16. private String uid;
  17. /**
  18. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.username
  19. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  20. */
  21. private String username;
  22. /**
  23. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.sex
  24. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  25. */
  26. private String sex;
  27. /**
  28. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.date_of_birth_year
  29. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  30. */
  31. private String dateOfBirthYear;
  32. /**
  33. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.date_of_birth_month
  34. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  35. */
  36. private String dateOfBirthMonth;
  37. /**
  38. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.id_number
  39. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  40. */
  41. private String idNumber;
  42. /**
  43. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.positive_id_url
  44. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  45. */
  46. private String positiveIdUrl;
  47. /**
  48. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.opposite_id_url
  49. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  50. */
  51. private String oppositeIdUrl;
  52. /**
  53. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.province
  54. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  55. */
  56. private Integer province;
  57. /**
  58. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.city
  59. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  60. */
  61. private Integer city;
  62. /**
  63. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.area
  64. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  65. */
  66. private Integer area;
  67. /**
  68. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.contact_mobile
  69. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  70. */
  71. private String contactMobile;
  72. /**
  73. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.bank_name
  74. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  75. */
  76. private String bankName;
  77. /**
  78. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.bank_account
  79. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  80. */
  81. private String bankAccount;
  82. /**
  83. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.bank_card_number
  84. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  85. */
  86. private String bankCardNumber;
  87. /**
  88. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.amount_money
  89. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  90. */
  91. private BigDecimal amountMoney;
  92. /**
  93. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.audit_status
  94. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  95. */
  96. private Integer auditStatus;
  97. /**
  98. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.process
  99. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  100. */
  101. private Integer process;
  102. /**
  103. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.wrong_count
  104. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  105. */
  106. private Integer wrongCount;
  107. /**
  108. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.payment_date
  109. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  110. */
  111. private Date paymentDate;
  112. /**
  113. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.expert
  114. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  115. */
  116. private Integer expert;
  117. /**
  118. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.celebrity
  119. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  120. */
  121. private Integer celebrity;
  122. /**
  123. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.international
  124. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  125. */
  126. private Integer international;
  127. /**
  128. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.fixed_tel
  129. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  130. */
  131. private String fixedTel;
  132. /**
  133. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.qq
  134. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  135. */
  136. private String qq;
  137. /**
  138. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.postal_address
  139. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  140. */
  141. private String postalAddress;
  142. /**
  143. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.postcode
  144. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  145. */
  146. private String postcode;
  147. /**
  148. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.review_instructions
  149. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  150. */
  151. private String reviewInstructions;
  152. /**
  153. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.industry
  154. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  155. */
  156. private Integer industry;
  157. /**
  158. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.contacts
  159. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  160. */
  161. private String contacts;
  162. /**
  163. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.email
  164. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  165. */
  166. private String email;
  167. /**
  168. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.professional_title
  169. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  170. */
  171. private String professionalTitle;
  172. /**
  173. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.work_unit
  174. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  175. */
  176. private String workUnit;
  177. /**
  178. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.education
  179. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  180. */
  181. private String education;
  182. /**
  183. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.major_category
  184. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  185. */
  186. private String majorCategory;
  187. /**
  188. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.qualification
  189. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  190. */
  191. private String qualification;
  192. /**
  193. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.investment
  194. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  195. */
  196. private Integer investment;
  197. /**
  198. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.graduate_school
  199. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  200. */
  201. private String graduateSchool;
  202. /**
  203. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.consultant
  204. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  205. */
  206. private Integer consultant;
  207. /**
  208. * This field was generated by MyBatis Generator. This field corresponds to the database column user_identity.consultation_price
  209. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  210. */
  211. private BigDecimal consultationPrice;
  212. private Integer releaseStatus;
  213. private Integer consultantType;
  214. private String consultantCertificateUrl;
  215. public Integer getReleaseStatus() {
  216. return releaseStatus;
  217. }
  218. public void setReleaseStatus(Integer releaseStatus) {
  219. this.releaseStatus = releaseStatus;
  220. }
  221. /**
  222. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.id
  223. * @return the value of user_identity.id
  224. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  225. */
  226. public String getId() {
  227. return id;
  228. }
  229. /**
  230. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.id
  231. * @param id the value for user_identity.id
  232. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  233. */
  234. public void setId(String id) {
  235. this.id = id;
  236. }
  237. /**
  238. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.uid
  239. * @return the value of user_identity.uid
  240. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  241. */
  242. public String getUid() {
  243. return uid;
  244. }
  245. /**
  246. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.uid
  247. * @param uid the value for user_identity.uid
  248. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  249. */
  250. public void setUid(String uid) {
  251. this.uid = uid;
  252. }
  253. /**
  254. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.username
  255. * @return the value of user_identity.username
  256. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  257. */
  258. public String getUsername() {
  259. return username;
  260. }
  261. /**
  262. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.username
  263. * @param username the value for user_identity.username
  264. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  265. */
  266. public void setUsername(String username) {
  267. this.username = username;
  268. }
  269. /**
  270. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.sex
  271. * @return the value of user_identity.sex
  272. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  273. */
  274. public String getSex() {
  275. return sex;
  276. }
  277. /**
  278. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.sex
  279. * @param sex the value for user_identity.sex
  280. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  281. */
  282. public void setSex(String sex) {
  283. this.sex = sex;
  284. }
  285. /**
  286. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.date_of_birth_year
  287. * @return the value of user_identity.date_of_birth_year
  288. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  289. */
  290. public String getDateOfBirthYear() {
  291. return dateOfBirthYear;
  292. }
  293. /**
  294. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.date_of_birth_year
  295. * @param dateOfBirthYear the value for user_identity.date_of_birth_year
  296. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  297. */
  298. public void setDateOfBirthYear(String dateOfBirthYear) {
  299. this.dateOfBirthYear = dateOfBirthYear;
  300. }
  301. /**
  302. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.date_of_birth_month
  303. * @return the value of user_identity.date_of_birth_month
  304. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  305. */
  306. public String getDateOfBirthMonth() {
  307. return dateOfBirthMonth;
  308. }
  309. /**
  310. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.date_of_birth_month
  311. * @param dateOfBirthMonth the value for user_identity.date_of_birth_month
  312. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  313. */
  314. public void setDateOfBirthMonth(String dateOfBirthMonth) {
  315. this.dateOfBirthMonth = dateOfBirthMonth;
  316. }
  317. /**
  318. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.id_number
  319. * @return the value of user_identity.id_number
  320. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  321. */
  322. public String getIdNumber() {
  323. return idNumber;
  324. }
  325. /**
  326. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.id_number
  327. * @param idNumber the value for user_identity.id_number
  328. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  329. */
  330. public void setIdNumber(String idNumber) {
  331. this.idNumber = idNumber;
  332. }
  333. /**
  334. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.positive_id_url
  335. * @return the value of user_identity.positive_id_url
  336. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  337. */
  338. public String getPositiveIdUrl() {
  339. return positiveIdUrl;
  340. }
  341. /**
  342. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.positive_id_url
  343. * @param positiveIdUrl the value for user_identity.positive_id_url
  344. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  345. */
  346. public void setPositiveIdUrl(String positiveIdUrl) {
  347. this.positiveIdUrl = positiveIdUrl;
  348. }
  349. /**
  350. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.opposite_id_url
  351. * @return the value of user_identity.opposite_id_url
  352. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  353. */
  354. public String getOppositeIdUrl() {
  355. return oppositeIdUrl;
  356. }
  357. /**
  358. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.opposite_id_url
  359. * @param oppositeIdUrl the value for user_identity.opposite_id_url
  360. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  361. */
  362. public void setOppositeIdUrl(String oppositeIdUrl) {
  363. this.oppositeIdUrl = oppositeIdUrl;
  364. }
  365. /**
  366. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.province
  367. * @return the value of user_identity.province
  368. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  369. */
  370. public Integer getProvince() {
  371. return province;
  372. }
  373. /**
  374. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.province
  375. * @param province the value for user_identity.province
  376. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  377. */
  378. public void setProvince(Integer province) {
  379. this.province = province;
  380. }
  381. /**
  382. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.city
  383. * @return the value of user_identity.city
  384. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  385. */
  386. public Integer getCity() {
  387. return city;
  388. }
  389. /**
  390. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.city
  391. * @param city the value for user_identity.city
  392. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  393. */
  394. public void setCity(Integer city) {
  395. this.city = city;
  396. }
  397. /**
  398. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.area
  399. * @return the value of user_identity.area
  400. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  401. */
  402. public Integer getArea() {
  403. return area;
  404. }
  405. /**
  406. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.area
  407. * @param area the value for user_identity.area
  408. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  409. */
  410. public void setArea(Integer area) {
  411. this.area = area;
  412. }
  413. /**
  414. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.contact_mobile
  415. * @return the value of user_identity.contact_mobile
  416. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  417. */
  418. public String getContactMobile() {
  419. return contactMobile;
  420. }
  421. /**
  422. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.contact_mobile
  423. * @param contactMobile the value for user_identity.contact_mobile
  424. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  425. */
  426. public void setContactMobile(String contactMobile) {
  427. this.contactMobile = contactMobile;
  428. }
  429. /**
  430. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.bank_name
  431. * @return the value of user_identity.bank_name
  432. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  433. */
  434. public String getBankName() {
  435. return bankName;
  436. }
  437. /**
  438. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.bank_name
  439. * @param bankName the value for user_identity.bank_name
  440. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  441. */
  442. public void setBankName(String bankName) {
  443. this.bankName = bankName;
  444. }
  445. /**
  446. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.bank_account
  447. * @return the value of user_identity.bank_account
  448. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  449. */
  450. public String getBankAccount() {
  451. return bankAccount;
  452. }
  453. /**
  454. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.bank_account
  455. * @param bankAccount the value for user_identity.bank_account
  456. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  457. */
  458. public void setBankAccount(String bankAccount) {
  459. this.bankAccount = bankAccount;
  460. }
  461. /**
  462. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.bank_card_number
  463. * @return the value of user_identity.bank_card_number
  464. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  465. */
  466. public String getBankCardNumber() {
  467. return bankCardNumber;
  468. }
  469. /**
  470. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.bank_card_number
  471. * @param bankCardNumber the value for user_identity.bank_card_number
  472. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  473. */
  474. public void setBankCardNumber(String bankCardNumber) {
  475. this.bankCardNumber = bankCardNumber;
  476. }
  477. /**
  478. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.amount_money
  479. * @return the value of user_identity.amount_money
  480. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  481. */
  482. public BigDecimal getAmountMoney() {
  483. return amountMoney;
  484. }
  485. /**
  486. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.amount_money
  487. * @param amountMoney the value for user_identity.amount_money
  488. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  489. */
  490. public void setAmountMoney(BigDecimal amountMoney) {
  491. this.amountMoney = amountMoney;
  492. }
  493. /**
  494. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.audit_status
  495. * @return the value of user_identity.audit_status
  496. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  497. */
  498. public Integer getAuditStatus() {
  499. return auditStatus;
  500. }
  501. /**
  502. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.audit_status
  503. * @param auditStatus the value for user_identity.audit_status
  504. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  505. */
  506. public void setAuditStatus(Integer auditStatus) {
  507. this.auditStatus = auditStatus;
  508. }
  509. /**
  510. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.process
  511. * @return the value of user_identity.process
  512. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  513. */
  514. public Integer getProcess() {
  515. return process;
  516. }
  517. /**
  518. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.process
  519. * @param process the value for user_identity.process
  520. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  521. */
  522. public void setProcess(Integer process) {
  523. this.process = process;
  524. }
  525. /**
  526. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.wrong_count
  527. * @return the value of user_identity.wrong_count
  528. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  529. */
  530. public Integer getWrongCount() {
  531. return wrongCount;
  532. }
  533. /**
  534. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.wrong_count
  535. * @param wrongCount the value for user_identity.wrong_count
  536. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  537. */
  538. public void setWrongCount(Integer wrongCount) {
  539. this.wrongCount = wrongCount;
  540. }
  541. /**
  542. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.payment_date
  543. * @return the value of user_identity.payment_date
  544. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  545. */
  546. public Date getPaymentDate() {
  547. return paymentDate;
  548. }
  549. /**
  550. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.payment_date
  551. * @param paymentDate the value for user_identity.payment_date
  552. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  553. */
  554. public void setPaymentDate(Date paymentDate) {
  555. this.paymentDate = paymentDate;
  556. }
  557. /**
  558. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.expert
  559. * @return the value of user_identity.expert
  560. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  561. */
  562. public Integer getExpert() {
  563. return expert;
  564. }
  565. /**
  566. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.expert
  567. * @param expert the value for user_identity.expert
  568. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  569. */
  570. public void setExpert(Integer expert) {
  571. this.expert = expert;
  572. }
  573. /**
  574. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.celebrity
  575. * @return the value of user_identity.celebrity
  576. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  577. */
  578. public Integer getCelebrity() {
  579. return celebrity;
  580. }
  581. /**
  582. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.celebrity
  583. * @param celebrity the value for user_identity.celebrity
  584. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  585. */
  586. public void setCelebrity(Integer celebrity) {
  587. this.celebrity = celebrity;
  588. }
  589. /**
  590. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.international
  591. * @return the value of user_identity.international
  592. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  593. */
  594. public Integer getInternational() {
  595. return international;
  596. }
  597. /**
  598. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.international
  599. * @param international the value for user_identity.international
  600. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  601. */
  602. public void setInternational(Integer international) {
  603. this.international = international;
  604. }
  605. /**
  606. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.fixed_tel
  607. * @return the value of user_identity.fixed_tel
  608. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  609. */
  610. public String getFixedTel() {
  611. return fixedTel;
  612. }
  613. /**
  614. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.fixed_tel
  615. * @param fixedTel the value for user_identity.fixed_tel
  616. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  617. */
  618. public void setFixedTel(String fixedTel) {
  619. this.fixedTel = fixedTel;
  620. }
  621. /**
  622. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.qq
  623. * @return the value of user_identity.qq
  624. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  625. */
  626. public String getQq() {
  627. return qq;
  628. }
  629. /**
  630. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.qq
  631. * @param qq the value for user_identity.qq
  632. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  633. */
  634. public void setQq(String qq) {
  635. this.qq = qq;
  636. }
  637. /**
  638. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.postal_address
  639. * @return the value of user_identity.postal_address
  640. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  641. */
  642. public String getPostalAddress() {
  643. return postalAddress;
  644. }
  645. /**
  646. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.postal_address
  647. * @param postalAddress the value for user_identity.postal_address
  648. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  649. */
  650. public void setPostalAddress(String postalAddress) {
  651. this.postalAddress = postalAddress;
  652. }
  653. /**
  654. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.postcode
  655. * @return the value of user_identity.postcode
  656. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  657. */
  658. public String getPostcode() {
  659. return postcode;
  660. }
  661. /**
  662. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.postcode
  663. * @param postcode the value for user_identity.postcode
  664. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  665. */
  666. public void setPostcode(String postcode) {
  667. this.postcode = postcode;
  668. }
  669. /**
  670. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.review_instructions
  671. * @return the value of user_identity.review_instructions
  672. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  673. */
  674. public String getReviewInstructions() {
  675. return reviewInstructions;
  676. }
  677. /**
  678. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.review_instructions
  679. * @param reviewInstructions the value for user_identity.review_instructions
  680. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  681. */
  682. public void setReviewInstructions(String reviewInstructions) {
  683. this.reviewInstructions = reviewInstructions;
  684. }
  685. /**
  686. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.industry
  687. * @return the value of user_identity.industry
  688. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  689. */
  690. public Integer getIndustry() {
  691. return industry;
  692. }
  693. /**
  694. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.industry
  695. * @param industry the value for user_identity.industry
  696. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  697. */
  698. public void setIndustry(Integer industry) {
  699. this.industry = industry;
  700. }
  701. /**
  702. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.contacts
  703. * @return the value of user_identity.contacts
  704. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  705. */
  706. public String getContacts() {
  707. return contacts;
  708. }
  709. /**
  710. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.contacts
  711. * @param contacts the value for user_identity.contacts
  712. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  713. */
  714. public void setContacts(String contacts) {
  715. this.contacts = contacts;
  716. }
  717. /**
  718. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.email
  719. * @return the value of user_identity.email
  720. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  721. */
  722. public String getEmail() {
  723. return email;
  724. }
  725. /**
  726. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.email
  727. * @param email the value for user_identity.email
  728. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  729. */
  730. public void setEmail(String email) {
  731. this.email = email;
  732. }
  733. /**
  734. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.professional_title
  735. * @return the value of user_identity.professional_title
  736. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  737. */
  738. public String getProfessionalTitle() {
  739. return professionalTitle;
  740. }
  741. /**
  742. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.professional_title
  743. * @param professionalTitle the value for user_identity.professional_title
  744. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  745. */
  746. public void setProfessionalTitle(String professionalTitle) {
  747. this.professionalTitle = professionalTitle;
  748. }
  749. /**
  750. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.work_unit
  751. * @return the value of user_identity.work_unit
  752. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  753. */
  754. public String getWorkUnit() {
  755. return workUnit;
  756. }
  757. /**
  758. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.work_unit
  759. * @param workUnit the value for user_identity.work_unit
  760. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  761. */
  762. public void setWorkUnit(String workUnit) {
  763. this.workUnit = workUnit;
  764. }
  765. /**
  766. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.education
  767. * @return the value of user_identity.education
  768. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  769. */
  770. public String getEducation() {
  771. return education;
  772. }
  773. /**
  774. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.education
  775. * @param education the value for user_identity.education
  776. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  777. */
  778. public void setEducation(String education) {
  779. this.education = education;
  780. }
  781. /**
  782. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.major_category
  783. * @return the value of user_identity.major_category
  784. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  785. */
  786. public String getMajorCategory() {
  787. return majorCategory;
  788. }
  789. /**
  790. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.major_category
  791. * @param majorCategory the value for user_identity.major_category
  792. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  793. */
  794. public void setMajorCategory(String majorCategory) {
  795. this.majorCategory = majorCategory;
  796. }
  797. /**
  798. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.qualification
  799. * @return the value of user_identity.qualification
  800. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  801. */
  802. public String getQualification() {
  803. return qualification;
  804. }
  805. /**
  806. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.qualification
  807. * @param qualification the value for user_identity.qualification
  808. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  809. */
  810. public void setQualification(String qualification) {
  811. this.qualification = qualification;
  812. }
  813. /**
  814. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.investment
  815. * @return the value of user_identity.investment
  816. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  817. */
  818. public Integer getInvestment() {
  819. return investment;
  820. }
  821. /**
  822. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.investment
  823. * @param investment the value for user_identity.investment
  824. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  825. */
  826. public void setInvestment(Integer investment) {
  827. this.investment = investment;
  828. }
  829. /**
  830. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.graduate_school
  831. * @return the value of user_identity.graduate_school
  832. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  833. */
  834. public String getGraduateSchool() {
  835. return graduateSchool;
  836. }
  837. /**
  838. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.graduate_school
  839. * @param graduateSchool the value for user_identity.graduate_school
  840. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  841. */
  842. public void setGraduateSchool(String graduateSchool) {
  843. this.graduateSchool = graduateSchool;
  844. }
  845. /**
  846. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.consultant
  847. * @return the value of user_identity.consultant
  848. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  849. */
  850. public Integer getConsultant() {
  851. return consultant;
  852. }
  853. /**
  854. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.consultant
  855. * @param consultant the value for user_identity.consultant
  856. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  857. */
  858. public void setConsultant(Integer consultant) {
  859. this.consultant = consultant;
  860. }
  861. /**
  862. * This method was generated by MyBatis Generator. This method returns the value of the database column user_identity.consultation_price
  863. * @return the value of user_identity.consultation_price
  864. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  865. */
  866. public BigDecimal getConsultationPrice() {
  867. return consultationPrice;
  868. }
  869. /**
  870. * This method was generated by MyBatis Generator. This method sets the value of the database column user_identity.consultation_price
  871. * @param consultationPrice the value for user_identity.consultation_price
  872. * @mbg.generated Fri Dec 29 09:20:50 CST 2017
  873. */
  874. public void setConsultationPrice(BigDecimal consultationPrice) {
  875. this.consultationPrice = consultationPrice;
  876. }
  877. public Integer getConsultantType() {
  878. return consultantType;
  879. }
  880. public void setConsultantType(Integer consultantType) {
  881. this.consultantType = consultantType;
  882. }
  883. public String getConsultantCertificateUrl() {
  884. return consultantCertificateUrl;
  885. }
  886. public void setConsultantCertificateUrl(String consultantCertificateUrl) {
  887. this.consultantCertificateUrl = consultantCertificateUrl;
  888. }
  889. }