User.java 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761
  1. package com.goafanti.common.model;
  2. import java.util.Date;
  3. public class User implements AftUser{
  4. /**
  5. * This field was generated by MyBatis Generator. This field corresponds to the database column user.id
  6. * @mbg.generated Tue Jun 26 10:23:14 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 Tue Jun 26 10:23:14 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 Tue Jun 26 10:23:14 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 Tue Jun 26 10:23:14 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 Tue Jun 26 10:23:14 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 Tue Jun 26 10:23:14 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 Tue Jun 26 10:23:14 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 Tue Jun 26 10:23:14 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 Tue Jun 26 10:23:14 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 Tue Jun 26 10:23:14 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 Tue Jun 26 10:23:14 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 Tue Jun 26 10:23:14 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 Tue Jun 26 10:23:14 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 Tue Jun 26 10:23:14 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 Tue Jun 26 10:23:14 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 Tue Jun 26 10:23:14 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 Tue Jun 26 10:23:14 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 Tue Jun 26 10:23:14 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 Tue Jun 26 10:23:14 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 Tue Jun 26 10:23:14 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 Tue Jun 26 10:23:14 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 Tue Jun 26 10:23:14 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 Tue Jun 26 10:23:14 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 Tue Jun 26 10:23:14 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 Tue Jun 26 10:23:14 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 Tue Jun 26 10:23:14 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 Tue Jun 26 10:23:14 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 Tue Jun 26 10:23:14 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 Tue Jun 26 10:23:14 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 Tue Jun 26 10:23:14 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 Tue Jun 26 10:23:14 CST 2018
  157. */
  158. private Integer creditRating;
  159. /**
  160. * This field was generated by MyBatis Generator. This field corresponds to the database column user.username
  161. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  162. */
  163. private String username;
  164. /**
  165. * This field was generated by MyBatis Generator. This field corresponds to the database column user.authentication
  166. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  167. */
  168. private Integer authentication;
  169. /**
  170. * This field was generated by MyBatis Generator. This field corresponds to the database column user.level
  171. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  172. */
  173. private Integer level;
  174. /**
  175. * This method was generated by MyBatis Generator. This method returns the value of the database column user.id
  176. * @return the value of user.id
  177. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  178. */
  179. private Float integrity;
  180. private Integer guidance;
  181. private Integer signBills;
  182. private Integer channel;
  183. public String getId() {
  184. return id;
  185. }
  186. /**
  187. * This method was generated by MyBatis Generator. This method sets the value of the database column user.id
  188. * @param id the value for user.id
  189. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  190. */
  191. public void setId(String id) {
  192. this.id = id;
  193. }
  194. /**
  195. * This method was generated by MyBatis Generator. This method returns the value of the database column user.mobile
  196. * @return the value of user.mobile
  197. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  198. */
  199. public String getMobile() {
  200. return mobile;
  201. }
  202. /**
  203. * This method was generated by MyBatis Generator. This method sets the value of the database column user.mobile
  204. * @param mobile the value for user.mobile
  205. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  206. */
  207. public void setMobile(String mobile) {
  208. this.mobile = mobile;
  209. }
  210. /**
  211. * This method was generated by MyBatis Generator. This method returns the value of the database column user.password
  212. * @return the value of user.password
  213. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  214. */
  215. public String getPassword() {
  216. return password;
  217. }
  218. /**
  219. * This method was generated by MyBatis Generator. This method sets the value of the database column user.password
  220. * @param password the value for user.password
  221. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  222. */
  223. public void setPassword(String password) {
  224. this.password = password;
  225. }
  226. /**
  227. * This method was generated by MyBatis Generator. This method returns the value of the database column user.nickname
  228. * @return the value of user.nickname
  229. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  230. */
  231. public String getNickname() {
  232. return nickname;
  233. }
  234. /**
  235. * This method was generated by MyBatis Generator. This method sets the value of the database column user.nickname
  236. * @param nickname the value for user.nickname
  237. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  238. */
  239. public void setNickname(String nickname) {
  240. this.nickname = nickname;
  241. }
  242. /**
  243. * This method was generated by MyBatis Generator. This method returns the value of the database column user.email
  244. * @return the value of user.email
  245. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  246. */
  247. public String getEmail() {
  248. return email;
  249. }
  250. /**
  251. * This method was generated by MyBatis Generator. This method sets the value of the database column user.email
  252. * @param email the value for user.email
  253. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  254. */
  255. public void setEmail(String email) {
  256. this.email = email;
  257. }
  258. /**
  259. * This method was generated by MyBatis Generator. This method returns the value of the database column user.create_time
  260. * @return the value of user.create_time
  261. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  262. */
  263. public Date getCreateTime() {
  264. return createTime;
  265. }
  266. /**
  267. * This method was generated by MyBatis Generator. This method sets the value of the database column user.create_time
  268. * @param createTime the value for user.create_time
  269. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  270. */
  271. public void setCreateTime(Date createTime) {
  272. this.createTime = createTime;
  273. }
  274. /**
  275. * This method was generated by MyBatis Generator. This method returns the value of the database column user.number
  276. * @return the value of user.number
  277. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  278. */
  279. public Long getNumber() {
  280. return number;
  281. }
  282. /**
  283. * This method was generated by MyBatis Generator. This method sets the value of the database column user.number
  284. * @param number the value for user.number
  285. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  286. */
  287. public void setNumber(Long number) {
  288. this.number = number;
  289. }
  290. /**
  291. * This method was generated by MyBatis Generator. This method returns the value of the database column user.lvl
  292. * @return the value of user.lvl
  293. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  294. */
  295. public Integer getLvl() {
  296. return lvl;
  297. }
  298. /**
  299. * This method was generated by MyBatis Generator. This method sets the value of the database column user.lvl
  300. * @param lvl the value for user.lvl
  301. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  302. */
  303. public void setLvl(Integer lvl) {
  304. this.lvl = lvl;
  305. }
  306. /**
  307. * This method was generated by MyBatis Generator. This method returns the value of the database column user.type
  308. * @return the value of user.type
  309. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  310. */
  311. public Integer getType() {
  312. return type;
  313. }
  314. /**
  315. * This method was generated by MyBatis Generator. This method sets the value of the database column user.type
  316. * @param type the value for user.type
  317. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  318. */
  319. public void setType(Integer type) {
  320. this.type = type;
  321. }
  322. /**
  323. * This method was generated by MyBatis Generator. This method returns the value of the database column user.mid
  324. * @return the value of user.mid
  325. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  326. */
  327. public String getMid() {
  328. return mid;
  329. }
  330. /**
  331. * This method was generated by MyBatis Generator. This method sets the value of the database column user.mid
  332. * @param mid the value for user.mid
  333. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  334. */
  335. public void setMid(String mid) {
  336. this.mid = mid;
  337. }
  338. /**
  339. * This method was generated by MyBatis Generator. This method returns the value of the database column user.status
  340. * @return the value of user.status
  341. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  342. */
  343. public Integer getStatus() {
  344. return status;
  345. }
  346. /**
  347. * This method was generated by MyBatis Generator. This method sets the value of the database column user.status
  348. * @param status the value for user.status
  349. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  350. */
  351. public void setStatus(Integer status) {
  352. this.status = status;
  353. }
  354. /**
  355. * This method was generated by MyBatis Generator. This method returns the value of the database column user.source
  356. * @return the value of user.source
  357. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  358. */
  359. public Integer getSource() {
  360. return source;
  361. }
  362. /**
  363. * This method was generated by MyBatis Generator. This method sets the value of the database column user.source
  364. * @param source the value for user.source
  365. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  366. */
  367. public void setSource(Integer source) {
  368. this.source = source;
  369. }
  370. /**
  371. * This method was generated by MyBatis Generator. This method returns the value of the database column user.update_time
  372. * @return the value of user.update_time
  373. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  374. */
  375. public Date getUpdateTime() {
  376. return updateTime;
  377. }
  378. /**
  379. * This method was generated by MyBatis Generator. This method sets the value of the database column user.update_time
  380. * @param updateTime the value for user.update_time
  381. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  382. */
  383. public void setUpdateTime(Date updateTime) {
  384. this.updateTime = updateTime;
  385. }
  386. /**
  387. * This method was generated by MyBatis Generator. This method returns the value of the database column user.company_logo_url
  388. * @return the value of user.company_logo_url
  389. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  390. */
  391. public String getCompanyLogoUrl() {
  392. return companyLogoUrl;
  393. }
  394. /**
  395. * This method was generated by MyBatis Generator. This method sets the value of the database column user.company_logo_url
  396. * @param companyLogoUrl the value for user.company_logo_url
  397. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  398. */
  399. public void setCompanyLogoUrl(String companyLogoUrl) {
  400. this.companyLogoUrl = companyLogoUrl;
  401. }
  402. /**
  403. * This method was generated by MyBatis Generator. This method returns the value of the database column user.head_portrait_url
  404. * @return the value of user.head_portrait_url
  405. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  406. */
  407. public String getHeadPortraitUrl() {
  408. return headPortraitUrl;
  409. }
  410. /**
  411. * This method was generated by MyBatis Generator. This method sets the value of the database column user.head_portrait_url
  412. * @param headPortraitUrl the value for user.head_portrait_url
  413. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  414. */
  415. public void setHeadPortraitUrl(String headPortraitUrl) {
  416. this.headPortraitUrl = headPortraitUrl;
  417. }
  418. /**
  419. * This method was generated by MyBatis Generator. This method returns the value of the database column user.society_tag
  420. * @return the value of user.society_tag
  421. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  422. */
  423. public String getSocietyTag() {
  424. return societyTag;
  425. }
  426. /**
  427. * This method was generated by MyBatis Generator. This method sets the value of the database column user.society_tag
  428. * @param societyTag the value for user.society_tag
  429. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  430. */
  431. public void setSocietyTag(String societyTag) {
  432. this.societyTag = societyTag;
  433. }
  434. /**
  435. * This method was generated by MyBatis Generator. This method returns the value of the database column user.introduction
  436. * @return the value of user.introduction
  437. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  438. */
  439. public String getIntroduction() {
  440. return introduction;
  441. }
  442. /**
  443. * This method was generated by MyBatis Generator. This method sets the value of the database column user.introduction
  444. * @param introduction the value for user.introduction
  445. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  446. */
  447. public void setIntroduction(String introduction) {
  448. this.introduction = introduction;
  449. }
  450. /**
  451. * This method was generated by MyBatis Generator. This method returns the value of the database column user.value_added_tag
  452. * @return the value of user.value_added_tag
  453. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  454. */
  455. public String getValueAddedTag() {
  456. return valueAddedTag;
  457. }
  458. /**
  459. * This method was generated by MyBatis Generator. This method sets the value of the database column user.value_added_tag
  460. * @param valueAddedTag the value for user.value_added_tag
  461. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  462. */
  463. public void setValueAddedTag(String valueAddedTag) {
  464. this.valueAddedTag = valueAddedTag;
  465. }
  466. /**
  467. * This method was generated by MyBatis Generator. This method returns the value of the database column user.organization_id
  468. * @return the value of user.organization_id
  469. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  470. */
  471. public String getOrganizationId() {
  472. return organizationId;
  473. }
  474. /**
  475. * This method was generated by MyBatis Generator. This method sets the value of the database column user.organization_id
  476. * @param organizationId the value for user.organization_id
  477. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  478. */
  479. public void setOrganizationId(String organizationId) {
  480. this.organizationId = organizationId;
  481. }
  482. /**
  483. * This method was generated by MyBatis Generator. This method returns the value of the database column user.identify_name
  484. * @return the value of user.identify_name
  485. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  486. */
  487. public String getIdentifyName() {
  488. return identifyName;
  489. }
  490. /**
  491. * This method was generated by MyBatis Generator. This method sets the value of the database column user.identify_name
  492. * @param identifyName the value for user.identify_name
  493. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  494. */
  495. public void setIdentifyName(String identifyName) {
  496. this.identifyName = identifyName;
  497. }
  498. /**
  499. * This method was generated by MyBatis Generator. This method returns the value of the database column user.background_url
  500. * @return the value of user.background_url
  501. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  502. */
  503. public String getBackgroundUrl() {
  504. return backgroundUrl;
  505. }
  506. /**
  507. * This method was generated by MyBatis Generator. This method sets the value of the database column user.background_url
  508. * @param backgroundUrl the value for user.background_url
  509. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  510. */
  511. public void setBackgroundUrl(String backgroundUrl) {
  512. this.backgroundUrl = backgroundUrl;
  513. }
  514. /**
  515. * This method was generated by MyBatis Generator. This method returns the value of the database column user.audit_opinion
  516. * @return the value of user.audit_opinion
  517. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  518. */
  519. public String getAuditOpinion() {
  520. return auditOpinion;
  521. }
  522. /**
  523. * This method was generated by MyBatis Generator. This method sets the value of the database column user.audit_opinion
  524. * @param auditOpinion the value for user.audit_opinion
  525. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  526. */
  527. public void setAuditOpinion(String auditOpinion) {
  528. this.auditOpinion = auditOpinion;
  529. }
  530. /**
  531. * This method was generated by MyBatis Generator. This method returns the value of the database column user.audit_status
  532. * @return the value of user.audit_status
  533. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  534. */
  535. public Integer getAuditStatus() {
  536. return auditStatus;
  537. }
  538. /**
  539. * This method was generated by MyBatis Generator. This method sets the value of the database column user.audit_status
  540. * @param auditStatus the value for user.audit_status
  541. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  542. */
  543. public void setAuditStatus(Integer auditStatus) {
  544. this.auditStatus = auditStatus;
  545. }
  546. /**
  547. * This method was generated by MyBatis Generator. This method returns the value of the database column user.share_type
  548. * @return the value of user.share_type
  549. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  550. */
  551. public Integer getShareType() {
  552. return shareType;
  553. }
  554. /**
  555. * This method was generated by MyBatis Generator. This method sets the value of the database column user.share_type
  556. * @param shareType the value for user.share_type
  557. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  558. */
  559. public void setShareType(Integer shareType) {
  560. this.shareType = shareType;
  561. }
  562. /**
  563. * This method was generated by MyBatis Generator. This method returns the value of the database column user.aid
  564. * @return the value of user.aid
  565. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  566. */
  567. public String getAid() {
  568. return aid;
  569. }
  570. /**
  571. * This method was generated by MyBatis Generator. This method sets the value of the database column user.aid
  572. * @param aid the value for user.aid
  573. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  574. */
  575. public void setAid(String aid) {
  576. this.aid = aid;
  577. }
  578. /**
  579. * This method was generated by MyBatis Generator. This method returns the value of the database column user.transfer_time
  580. * @return the value of user.transfer_time
  581. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  582. */
  583. public Date getTransferTime() {
  584. return transferTime;
  585. }
  586. /**
  587. * This method was generated by MyBatis Generator. This method sets the value of the database column user.transfer_time
  588. * @param transferTime the value for user.transfer_time
  589. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  590. */
  591. public void setTransferTime(Date transferTime) {
  592. this.transferTime = transferTime;
  593. }
  594. /**
  595. * This method was generated by MyBatis Generator. This method returns the value of the database column user.information_maintainer
  596. * @return the value of user.information_maintainer
  597. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  598. */
  599. public String getInformationMaintainer() {
  600. return informationMaintainer;
  601. }
  602. /**
  603. * This method was generated by MyBatis Generator. This method sets the value of the database column user.information_maintainer
  604. * @param informationMaintainer the value for user.information_maintainer
  605. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  606. */
  607. public void setInformationMaintainer(String informationMaintainer) {
  608. this.informationMaintainer = informationMaintainer;
  609. }
  610. /**
  611. * This method was generated by MyBatis Generator. This method returns the value of the database column user.core_technology
  612. * @return the value of user.core_technology
  613. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  614. */
  615. public String getCoreTechnology() {
  616. return coreTechnology;
  617. }
  618. /**
  619. * This method was generated by MyBatis Generator. This method sets the value of the database column user.core_technology
  620. * @param coreTechnology the value for user.core_technology
  621. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  622. */
  623. public void setCoreTechnology(String coreTechnology) {
  624. this.coreTechnology = coreTechnology;
  625. }
  626. /**
  627. * This method was generated by MyBatis Generator. This method returns the value of the database column user.accomplish_situation
  628. * @return the value of user.accomplish_situation
  629. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  630. */
  631. public String getAccomplishSituation() {
  632. return accomplishSituation;
  633. }
  634. /**
  635. * This method was generated by MyBatis Generator. This method sets the value of the database column user.accomplish_situation
  636. * @param accomplishSituation the value for user.accomplish_situation
  637. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  638. */
  639. public void setAccomplishSituation(String accomplishSituation) {
  640. this.accomplishSituation = accomplishSituation;
  641. }
  642. /**
  643. * This method was generated by MyBatis Generator. This method returns the value of the database column user.intellectual_property
  644. * @return the value of user.intellectual_property
  645. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  646. */
  647. public String getIntellectualProperty() {
  648. return intellectualProperty;
  649. }
  650. /**
  651. * This method was generated by MyBatis Generator. This method sets the value of the database column user.intellectual_property
  652. * @param intellectualProperty the value for user.intellectual_property
  653. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  654. */
  655. public void setIntellectualProperty(String intellectualProperty) {
  656. this.intellectualProperty = intellectualProperty;
  657. }
  658. /**
  659. * This method was generated by MyBatis Generator. This method returns the value of the database column user.credit_rating
  660. * @return the value of user.credit_rating
  661. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  662. */
  663. public Integer getCreditRating() {
  664. return creditRating;
  665. }
  666. /**
  667. * This method was generated by MyBatis Generator. This method sets the value of the database column user.credit_rating
  668. * @param creditRating the value for user.credit_rating
  669. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  670. */
  671. public void setCreditRating(Integer creditRating) {
  672. this.creditRating = creditRating;
  673. }
  674. /**
  675. * This method was generated by MyBatis Generator. This method returns the value of the database column user.username
  676. * @return the value of user.username
  677. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  678. */
  679. public String getUsername() {
  680. return username;
  681. }
  682. /**
  683. * This method was generated by MyBatis Generator. This method sets the value of the database column user.username
  684. * @param username the value for user.username
  685. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  686. */
  687. public void setUsername(String username) {
  688. this.username = username;
  689. }
  690. /**
  691. * This method was generated by MyBatis Generator. This method returns the value of the database column user.authentication
  692. * @return the value of user.authentication
  693. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  694. */
  695. public Integer getAuthentication() {
  696. return authentication;
  697. }
  698. /**
  699. * This method was generated by MyBatis Generator. This method sets the value of the database column user.authentication
  700. * @param authentication the value for user.authentication
  701. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  702. */
  703. public void setAuthentication(Integer authentication) {
  704. this.authentication = authentication;
  705. }
  706. /**
  707. * This method was generated by MyBatis Generator. This method returns the value of the database column user.level
  708. * @return the value of user.level
  709. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  710. */
  711. public Integer getLevel() {
  712. return level;
  713. }
  714. /**
  715. * This method was generated by MyBatis Generator. This method sets the value of the database column user.level
  716. * @param level the value for user.level
  717. * @mbg.generated Tue Jun 26 10:23:14 CST 2018
  718. */
  719. public void setLevel(Integer level) {
  720. this.level = level;
  721. }
  722. /**
  723. *
  724. */
  725. private static final long serialVersionUID = -3301500555091503770L;
  726. public static long getSerialversionuid() {
  727. return serialVersionUID;
  728. }
  729. public Float getIntegrity() {
  730. return integrity;
  731. }
  732. public void setIntegrity(Float integrity) {
  733. this.integrity = integrity;
  734. }
  735. public Integer getGuidance() {
  736. return guidance;
  737. }
  738. public void setGuidance(Integer guidance) {
  739. this.guidance = guidance;
  740. }
  741. public Integer getSignBills() {
  742. return signBills;
  743. }
  744. public void setSignBills(Integer signBills) {
  745. this.signBills = signBills;
  746. }
  747. public Integer getChannel() {
  748. return channel;
  749. }
  750. public void setChannel(Integer channel) {
  751. this.channel = channel;
  752. }
  753. }