User.java 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666
  1. package com.goafanti.common.model;
  2. import java.util.Date;
  3. public class User extends BaseModel implements AftUser{
  4. /**
  5. * This field was generated by MyBatis Generator. This field corresponds to the database column user.id
  6. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  7. */
  8. private String id;
  9. /**
  10. * This field was generated by MyBatis Generator. This field corresponds to the database column user.mobile
  11. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  12. */
  13. private String mobile;
  14. /**
  15. * This field was generated by MyBatis Generator. This field corresponds to the database column user.password
  16. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  17. */
  18. private String password;
  19. /**
  20. * This field was generated by MyBatis Generator. This field corresponds to the database column user.nickname
  21. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  22. */
  23. private String nickname;
  24. /**
  25. * This field was generated by MyBatis Generator. This field corresponds to the database column user.email
  26. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  27. */
  28. private String email;
  29. /**
  30. * This field was generated by MyBatis Generator. This field corresponds to the database column user.create_time
  31. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  32. */
  33. private Date createTime;
  34. /**
  35. * This field was generated by MyBatis Generator. This field corresponds to the database column user.number
  36. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  37. */
  38. private Long number;
  39. /**
  40. * This field was generated by MyBatis Generator. This field corresponds to the database column user.lvl
  41. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  42. */
  43. private Integer lvl;
  44. /**
  45. * This field was generated by MyBatis Generator. This field corresponds to the database column user.type
  46. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  47. */
  48. private Integer type;
  49. /**
  50. * This field was generated by MyBatis Generator. This field corresponds to the database column user.mid
  51. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  52. */
  53. private String mid;
  54. /**
  55. * This field was generated by MyBatis Generator. This field corresponds to the database column user.status
  56. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  57. */
  58. private Integer status;
  59. /**
  60. * This field was generated by MyBatis Generator. This field corresponds to the database column user.source
  61. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  62. */
  63. private Integer source;
  64. /**
  65. * This field was generated by MyBatis Generator. This field corresponds to the database column user.update_time
  66. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  67. */
  68. private Date updateTime;
  69. /**
  70. * This field was generated by MyBatis Generator. This field corresponds to the database column user.company_logo_url
  71. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  72. */
  73. private String companyLogoUrl;
  74. /**
  75. * This field was generated by MyBatis Generator. This field corresponds to the database column user.head_portrait_url
  76. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  77. */
  78. private String headPortraitUrl;
  79. /**
  80. * This field was generated by MyBatis Generator. This field corresponds to the database column user.society_tag
  81. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  82. */
  83. private String societyTag;
  84. /**
  85. * This field was generated by MyBatis Generator. This field corresponds to the database column user.introduction
  86. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  87. */
  88. private String introduction;
  89. /**
  90. * This field was generated by MyBatis Generator. This field corresponds to the database column user.value_added_tag
  91. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  92. */
  93. private String valueAddedTag;
  94. /**
  95. * This field was generated by MyBatis Generator. This field corresponds to the database column user.organization_id
  96. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  97. */
  98. private String organizationId;
  99. /**
  100. * This field was generated by MyBatis Generator. This field corresponds to the database column user.identify_name
  101. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  102. */
  103. private String identifyName;
  104. /**
  105. * This field was generated by MyBatis Generator. This field corresponds to the database column user.background_url
  106. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  107. */
  108. private String backgroundUrl;
  109. /**
  110. * This field was generated by MyBatis Generator. This field corresponds to the database column user.audit_opinion
  111. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  112. */
  113. private String auditOpinion;
  114. /**
  115. * This field was generated by MyBatis Generator. This field corresponds to the database column user.audit_status
  116. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  117. */
  118. private Integer auditStatus;
  119. /**
  120. * This field was generated by MyBatis Generator. This field corresponds to the database column user.share_type
  121. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  122. */
  123. private Integer shareType;
  124. /**
  125. * This field was generated by MyBatis Generator. This field corresponds to the database column user.aid
  126. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  127. */
  128. private String aid;
  129. /**
  130. * This field was generated by MyBatis Generator. This field corresponds to the database column user.transfer_time
  131. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  132. */
  133. private Date transferTime;
  134. /**
  135. * This field was generated by MyBatis Generator. This field corresponds to the database column user.information_maintainer
  136. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  137. */
  138. private String informationMaintainer;
  139. /**
  140. * This field was generated by MyBatis Generator. This field corresponds to the database column user.core_technology
  141. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  142. */
  143. private String coreTechnology;
  144. /**
  145. * This field was generated by MyBatis Generator. This field corresponds to the database column user.accomplish_situation
  146. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  147. */
  148. private String accomplishSituation;
  149. /**
  150. * This field was generated by MyBatis Generator. This field corresponds to the database column user.intellectual_property
  151. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  152. */
  153. private String intellectualProperty;
  154. /**
  155. * This field was generated by MyBatis Generator. This field corresponds to the database column user.credit_rating
  156. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  157. */
  158. private Integer creditRating;
  159. /**
  160. * This method was generated by MyBatis Generator. This method returns the value of the database column user.id
  161. * @return the value of user.id
  162. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  163. */
  164. public String getId() {
  165. return id;
  166. }
  167. /**
  168. * This method was generated by MyBatis Generator. This method sets the value of the database column user.id
  169. * @param id the value for user.id
  170. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  171. */
  172. public void setId(String id) {
  173. this.id = id;
  174. }
  175. /**
  176. * This method was generated by MyBatis Generator. This method returns the value of the database column user.mobile
  177. * @return the value of user.mobile
  178. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  179. */
  180. public String getMobile() {
  181. return mobile;
  182. }
  183. /**
  184. * This method was generated by MyBatis Generator. This method sets the value of the database column user.mobile
  185. * @param mobile the value for user.mobile
  186. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  187. */
  188. public void setMobile(String mobile) {
  189. this.mobile = mobile;
  190. }
  191. /**
  192. * This method was generated by MyBatis Generator. This method returns the value of the database column user.password
  193. * @return the value of user.password
  194. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  195. */
  196. public String getPassword() {
  197. return password;
  198. }
  199. /**
  200. * This method was generated by MyBatis Generator. This method sets the value of the database column user.password
  201. * @param password the value for user.password
  202. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  203. */
  204. public void setPassword(String password) {
  205. this.password = password;
  206. }
  207. /**
  208. * This method was generated by MyBatis Generator. This method returns the value of the database column user.nickname
  209. * @return the value of user.nickname
  210. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  211. */
  212. public String getNickname() {
  213. return nickname;
  214. }
  215. /**
  216. * This method was generated by MyBatis Generator. This method sets the value of the database column user.nickname
  217. * @param nickname the value for user.nickname
  218. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  219. */
  220. public void setNickname(String nickname) {
  221. this.nickname = nickname;
  222. }
  223. /**
  224. * This method was generated by MyBatis Generator. This method returns the value of the database column user.email
  225. * @return the value of user.email
  226. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  227. */
  228. public String getEmail() {
  229. return email;
  230. }
  231. /**
  232. * This method was generated by MyBatis Generator. This method sets the value of the database column user.email
  233. * @param email the value for user.email
  234. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  235. */
  236. public void setEmail(String email) {
  237. this.email = email;
  238. }
  239. /**
  240. * This method was generated by MyBatis Generator. This method returns the value of the database column user.create_time
  241. * @return the value of user.create_time
  242. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  243. */
  244. public Date getCreateTime() {
  245. return createTime;
  246. }
  247. /**
  248. * This method was generated by MyBatis Generator. This method sets the value of the database column user.create_time
  249. * @param createTime the value for user.create_time
  250. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  251. */
  252. public void setCreateTime(Date createTime) {
  253. this.createTime = createTime;
  254. }
  255. /**
  256. * This method was generated by MyBatis Generator. This method returns the value of the database column user.number
  257. * @return the value of user.number
  258. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  259. */
  260. public Long getNumber() {
  261. return number;
  262. }
  263. /**
  264. * This method was generated by MyBatis Generator. This method sets the value of the database column user.number
  265. * @param number the value for user.number
  266. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  267. */
  268. public void setNumber(Long number) {
  269. this.number = number;
  270. }
  271. /**
  272. * This method was generated by MyBatis Generator. This method returns the value of the database column user.lvl
  273. * @return the value of user.lvl
  274. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  275. */
  276. public Integer getLvl() {
  277. return lvl;
  278. }
  279. /**
  280. * This method was generated by MyBatis Generator. This method sets the value of the database column user.lvl
  281. * @param lvl the value for user.lvl
  282. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  283. */
  284. public void setLvl(Integer lvl) {
  285. this.lvl = lvl;
  286. }
  287. /**
  288. * This method was generated by MyBatis Generator. This method returns the value of the database column user.type
  289. * @return the value of user.type
  290. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  291. */
  292. public Integer getType() {
  293. return type;
  294. }
  295. /**
  296. * This method was generated by MyBatis Generator. This method sets the value of the database column user.type
  297. * @param type the value for user.type
  298. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  299. */
  300. public void setType(Integer type) {
  301. this.type = type;
  302. }
  303. /**
  304. * This method was generated by MyBatis Generator. This method returns the value of the database column user.mid
  305. * @return the value of user.mid
  306. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  307. */
  308. public String getMid() {
  309. return mid;
  310. }
  311. /**
  312. * This method was generated by MyBatis Generator. This method sets the value of the database column user.mid
  313. * @param mid the value for user.mid
  314. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  315. */
  316. public void setMid(String mid) {
  317. this.mid = mid;
  318. }
  319. /**
  320. * This method was generated by MyBatis Generator. This method returns the value of the database column user.status
  321. * @return the value of user.status
  322. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  323. */
  324. public Integer getStatus() {
  325. return status;
  326. }
  327. /**
  328. * This method was generated by MyBatis Generator. This method sets the value of the database column user.status
  329. * @param status the value for user.status
  330. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  331. */
  332. public void setStatus(Integer status) {
  333. this.status = status;
  334. }
  335. /**
  336. * This method was generated by MyBatis Generator. This method returns the value of the database column user.source
  337. * @return the value of user.source
  338. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  339. */
  340. public Integer getSource() {
  341. return source;
  342. }
  343. /**
  344. * This method was generated by MyBatis Generator. This method sets the value of the database column user.source
  345. * @param source the value for user.source
  346. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  347. */
  348. public void setSource(Integer source) {
  349. this.source = source;
  350. }
  351. /**
  352. * This method was generated by MyBatis Generator. This method returns the value of the database column user.update_time
  353. * @return the value of user.update_time
  354. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  355. */
  356. public Date getUpdateTime() {
  357. return updateTime;
  358. }
  359. /**
  360. * This method was generated by MyBatis Generator. This method sets the value of the database column user.update_time
  361. * @param updateTime the value for user.update_time
  362. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  363. */
  364. public void setUpdateTime(Date updateTime) {
  365. this.updateTime = updateTime;
  366. }
  367. /**
  368. * This method was generated by MyBatis Generator. This method returns the value of the database column user.company_logo_url
  369. * @return the value of user.company_logo_url
  370. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  371. */
  372. public String getCompanyLogoUrl() {
  373. return companyLogoUrl;
  374. }
  375. /**
  376. * This method was generated by MyBatis Generator. This method sets the value of the database column user.company_logo_url
  377. * @param companyLogoUrl the value for user.company_logo_url
  378. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  379. */
  380. public void setCompanyLogoUrl(String companyLogoUrl) {
  381. this.companyLogoUrl = companyLogoUrl;
  382. }
  383. /**
  384. * This method was generated by MyBatis Generator. This method returns the value of the database column user.head_portrait_url
  385. * @return the value of user.head_portrait_url
  386. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  387. */
  388. public String getHeadPortraitUrl() {
  389. return headPortraitUrl;
  390. }
  391. /**
  392. * This method was generated by MyBatis Generator. This method sets the value of the database column user.head_portrait_url
  393. * @param headPortraitUrl the value for user.head_portrait_url
  394. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  395. */
  396. public void setHeadPortraitUrl(String headPortraitUrl) {
  397. this.headPortraitUrl = headPortraitUrl;
  398. }
  399. /**
  400. * This method was generated by MyBatis Generator. This method returns the value of the database column user.society_tag
  401. * @return the value of user.society_tag
  402. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  403. */
  404. public String getSocietyTag() {
  405. return societyTag;
  406. }
  407. /**
  408. * This method was generated by MyBatis Generator. This method sets the value of the database column user.society_tag
  409. * @param societyTag the value for user.society_tag
  410. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  411. */
  412. public void setSocietyTag(String societyTag) {
  413. this.societyTag = societyTag;
  414. }
  415. /**
  416. * This method was generated by MyBatis Generator. This method returns the value of the database column user.introduction
  417. * @return the value of user.introduction
  418. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  419. */
  420. public String getIntroduction() {
  421. return introduction;
  422. }
  423. /**
  424. * This method was generated by MyBatis Generator. This method sets the value of the database column user.introduction
  425. * @param introduction the value for user.introduction
  426. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  427. */
  428. public void setIntroduction(String introduction) {
  429. this.introduction = introduction;
  430. }
  431. /**
  432. * This method was generated by MyBatis Generator. This method returns the value of the database column user.value_added_tag
  433. * @return the value of user.value_added_tag
  434. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  435. */
  436. public String getValueAddedTag() {
  437. return valueAddedTag;
  438. }
  439. /**
  440. * This method was generated by MyBatis Generator. This method sets the value of the database column user.value_added_tag
  441. * @param valueAddedTag the value for user.value_added_tag
  442. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  443. */
  444. public void setValueAddedTag(String valueAddedTag) {
  445. this.valueAddedTag = valueAddedTag;
  446. }
  447. /**
  448. * This method was generated by MyBatis Generator. This method returns the value of the database column user.organization_id
  449. * @return the value of user.organization_id
  450. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  451. */
  452. public String getOrganizationId() {
  453. return organizationId;
  454. }
  455. /**
  456. * This method was generated by MyBatis Generator. This method sets the value of the database column user.organization_id
  457. * @param organizationId the value for user.organization_id
  458. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  459. */
  460. public void setOrganizationId(String organizationId) {
  461. this.organizationId = organizationId;
  462. }
  463. /**
  464. * This method was generated by MyBatis Generator. This method returns the value of the database column user.identify_name
  465. * @return the value of user.identify_name
  466. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  467. */
  468. public String getIdentifyName() {
  469. return identifyName;
  470. }
  471. /**
  472. * This method was generated by MyBatis Generator. This method sets the value of the database column user.identify_name
  473. * @param identifyName the value for user.identify_name
  474. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  475. */
  476. public void setIdentifyName(String identifyName) {
  477. this.identifyName = identifyName;
  478. }
  479. /**
  480. * This method was generated by MyBatis Generator. This method returns the value of the database column user.background_url
  481. * @return the value of user.background_url
  482. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  483. */
  484. public String getBackgroundUrl() {
  485. return backgroundUrl;
  486. }
  487. /**
  488. * This method was generated by MyBatis Generator. This method sets the value of the database column user.background_url
  489. * @param backgroundUrl the value for user.background_url
  490. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  491. */
  492. public void setBackgroundUrl(String backgroundUrl) {
  493. this.backgroundUrl = backgroundUrl;
  494. }
  495. /**
  496. * This method was generated by MyBatis Generator. This method returns the value of the database column user.audit_opinion
  497. * @return the value of user.audit_opinion
  498. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  499. */
  500. public String getAuditOpinion() {
  501. return auditOpinion;
  502. }
  503. /**
  504. * This method was generated by MyBatis Generator. This method sets the value of the database column user.audit_opinion
  505. * @param auditOpinion the value for user.audit_opinion
  506. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  507. */
  508. public void setAuditOpinion(String auditOpinion) {
  509. this.auditOpinion = auditOpinion;
  510. }
  511. /**
  512. * This method was generated by MyBatis Generator. This method returns the value of the database column user.audit_status
  513. * @return the value of user.audit_status
  514. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  515. */
  516. public Integer getAuditStatus() {
  517. return auditStatus;
  518. }
  519. /**
  520. * This method was generated by MyBatis Generator. This method sets the value of the database column user.audit_status
  521. * @param auditStatus the value for user.audit_status
  522. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  523. */
  524. public void setAuditStatus(Integer auditStatus) {
  525. this.auditStatus = auditStatus;
  526. }
  527. /**
  528. * This method was generated by MyBatis Generator. This method returns the value of the database column user.share_type
  529. * @return the value of user.share_type
  530. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  531. */
  532. public Integer getShareType() {
  533. return shareType;
  534. }
  535. /**
  536. * This method was generated by MyBatis Generator. This method sets the value of the database column user.share_type
  537. * @param shareType the value for user.share_type
  538. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  539. */
  540. public void setShareType(Integer shareType) {
  541. this.shareType = shareType;
  542. }
  543. /**
  544. * This method was generated by MyBatis Generator. This method returns the value of the database column user.aid
  545. * @return the value of user.aid
  546. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  547. */
  548. public String getAid() {
  549. return aid;
  550. }
  551. /**
  552. * This method was generated by MyBatis Generator. This method sets the value of the database column user.aid
  553. * @param aid the value for user.aid
  554. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  555. */
  556. public void setAid(String aid) {
  557. this.aid = aid;
  558. }
  559. /**
  560. * This method was generated by MyBatis Generator. This method returns the value of the database column user.transfer_time
  561. * @return the value of user.transfer_time
  562. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  563. */
  564. public Date getTransferTime() {
  565. return transferTime;
  566. }
  567. /**
  568. * This method was generated by MyBatis Generator. This method sets the value of the database column user.transfer_time
  569. * @param transferTime the value for user.transfer_time
  570. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  571. */
  572. public void setTransferTime(Date transferTime) {
  573. this.transferTime = transferTime;
  574. }
  575. /**
  576. * This method was generated by MyBatis Generator. This method returns the value of the database column user.information_maintainer
  577. * @return the value of user.information_maintainer
  578. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  579. */
  580. public String getInformationMaintainer() {
  581. return informationMaintainer;
  582. }
  583. /**
  584. * This method was generated by MyBatis Generator. This method sets the value of the database column user.information_maintainer
  585. * @param informationMaintainer the value for user.information_maintainer
  586. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  587. */
  588. public void setInformationMaintainer(String informationMaintainer) {
  589. this.informationMaintainer = informationMaintainer;
  590. }
  591. /**
  592. * This method was generated by MyBatis Generator. This method returns the value of the database column user.core_technology
  593. * @return the value of user.core_technology
  594. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  595. */
  596. public String getCoreTechnology() {
  597. return coreTechnology;
  598. }
  599. /**
  600. * This method was generated by MyBatis Generator. This method sets the value of the database column user.core_technology
  601. * @param coreTechnology the value for user.core_technology
  602. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  603. */
  604. public void setCoreTechnology(String coreTechnology) {
  605. this.coreTechnology = coreTechnology;
  606. }
  607. /**
  608. * This method was generated by MyBatis Generator. This method returns the value of the database column user.accomplish_situation
  609. * @return the value of user.accomplish_situation
  610. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  611. */
  612. public String getAccomplishSituation() {
  613. return accomplishSituation;
  614. }
  615. /**
  616. * This method was generated by MyBatis Generator. This method sets the value of the database column user.accomplish_situation
  617. * @param accomplishSituation the value for user.accomplish_situation
  618. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  619. */
  620. public void setAccomplishSituation(String accomplishSituation) {
  621. this.accomplishSituation = accomplishSituation;
  622. }
  623. /**
  624. * This method was generated by MyBatis Generator. This method returns the value of the database column user.intellectual_property
  625. * @return the value of user.intellectual_property
  626. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  627. */
  628. public String getIntellectualProperty() {
  629. return intellectualProperty;
  630. }
  631. /**
  632. * This method was generated by MyBatis Generator. This method sets the value of the database column user.intellectual_property
  633. * @param intellectualProperty the value for user.intellectual_property
  634. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  635. */
  636. public void setIntellectualProperty(String intellectualProperty) {
  637. this.intellectualProperty = intellectualProperty;
  638. }
  639. /**
  640. * This method was generated by MyBatis Generator. This method returns the value of the database column user.credit_rating
  641. * @return the value of user.credit_rating
  642. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  643. */
  644. public Integer getCreditRating() {
  645. return creditRating;
  646. }
  647. /**
  648. * This method was generated by MyBatis Generator. This method sets the value of the database column user.credit_rating
  649. * @param creditRating the value for user.credit_rating
  650. * @mbg.generated Sat Jun 09 10:51:48 CST 2018
  651. */
  652. public void setCreditRating(Integer creditRating) {
  653. this.creditRating = creditRating;
  654. }
  655. /**
  656. *
  657. */
  658. private static final long serialVersionUID = -3301500555091503770L;
  659. public static long getSerialversionuid() {
  660. return serialVersionUID;
  661. }
  662. }