UserIdentity.java 36 KB

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