User.java 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592
  1. package com.goafanti.common.model;
  2. import java.util.Date;
  3. /**
  4. * (User)实体类
  5. *
  6. * @author makejava
  7. * @since 2024-12-02 11:37:11
  8. */
  9. public class User implements AftUser{
  10. private static final long serialVersionUID = 896145436195951740L;
  11. private String id;
  12. /**
  13. * 手机号
  14. */
  15. private String mobile;
  16. /**
  17. * 密码,md5+salt
  18. */
  19. private String password;
  20. /**
  21. * 用户昵称
  22. */
  23. private String nickname;
  24. /**
  25. * 用户邮箱
  26. */
  27. private String email;
  28. /**
  29. * 注册时间
  30. */
  31. private Date createTime;
  32. /**
  33. * 用户编号
  34. */
  35. private Long number;
  36. /**
  37. * 会员等级
  38. */
  39. private Integer lvl;
  40. /**
  41. * 个人/单位,默认0-个人账号,1-组织账号
  42. */
  43. private Integer type;
  44. /**
  45. * 管理员ID
  46. */
  47. private String aid;
  48. /**
  49. * 客户经理ID
  50. */
  51. private String mid;
  52. /**
  53. * 账户状态 0-有效 1-失效 2-锁定
  54. */
  55. private Integer status;
  56. /**
  57. * 用户来源 0 注册 1 录入 2 领取 3 转交
  58. */
  59. private Integer source;
  60. /**
  61. * 更新时间
  62. */
  63. private Date updateTime;
  64. /**
  65. * 公司LOGO
  66. */
  67. private String companyLogoUrl;
  68. /**
  69. * 个人头像
  70. */
  71. private String headPortraitUrl;
  72. /**
  73. * 社会属性标签
  74. */
  75. private String societyTag;
  76. /**
  77. * 简介
  78. */
  79. private String introduction;
  80. /**
  81. * 增值属性标签
  82. */
  83. private String valueAddedTag;
  84. /**
  85. * 所属单位用户ID
  86. */
  87. private String organizationId;
  88. /**
  89. * 共享类型 0=私有 1=公共 2=签单 3=外联 4=渠道
  90. */
  91. private Integer shareType;
  92. /**
  93. * 客户认证名称
  94. */
  95. private String identifyName;
  96. /**
  97. * 专家详情背景图
  98. */
  99. private String backgroundUrl;
  100. /**
  101. * 客户审核状态 0-待审核 ,1-审核通过,2-审核拒绝
  102. */
  103. private Integer auditStatus;
  104. /**
  105. * 审核意见
  106. */
  107. private String auditOpinion;
  108. /**
  109. * 客户转换时间
  110. */
  111. private Date transferTime;
  112. /**
  113. * 资料维护人
  114. */
  115. private String informationMaintainer;
  116. /**
  117. * 核心技术
  118. */
  119. private String coreTechnology;
  120. /**
  121. * 客户已完成项目情况
  122. */
  123. private String accomplishSituation;
  124. /**
  125. * 已有知识产权情况
  126. */
  127. private String intellectualProperty;
  128. /**
  129. * 信用等级 1 A级优质,2 B级正常,3 C级失信
  130. */
  131. private Integer creditRating;
  132. /**
  133. * 用户等级 0 一般客户 1 意向客户 2 重点客户
  134. */
  135. private Integer level;
  136. /**
  137. * 0-未认证,1-已认证
  138. */
  139. private Integer authentication;
  140. /**
  141. * 用户注册名
  142. */
  143. private String username;
  144. /**
  145. * 完整度
  146. */
  147. private Double integrity;
  148. /**
  149. * 邀请码
  150. */
  151. private String toInviteCode;
  152. /**
  153. * 受邀请码
  154. */
  155. private String beInviteCode;
  156. /**
  157. * 指导 0无 1有
  158. */
  159. private Integer guidance;
  160. /**
  161. * 签单标记 0未签单 1已签单
  162. */
  163. private Integer signBills;
  164. /**
  165. * 外联客户 0否 1是
  166. */
  167. private Integer channel;
  168. /**
  169. * 渠道客户 0否 1是
  170. */
  171. private Integer newChannel;
  172. /**
  173. * 签单时间(最近)
  174. */
  175. private Date signTime;
  176. /**
  177. * 外呼状态 0=未呼叫,1=呼叫中
  178. */
  179. private Integer callStatus;
  180. /**
  181. * 线索客户 0=否,1=是
  182. */
  183. private Integer clueStatus;
  184. /**
  185. * 线索客户 0=待分配,1=已分配,2=已回退,3=待处理,4=已领取
  186. */
  187. private Integer clueProcess;
  188. /**
  189. * 线索导入时间
  190. */
  191. private Date clueTime;
  192. /**
  193. * 线索录入人
  194. */
  195. private String clueAid;
  196. /**
  197. * 线索转交时间
  198. */
  199. private Date clueTransferTime;
  200. public String getId() {
  201. return id;
  202. }
  203. public void setId(String id) {
  204. this.id = id;
  205. }
  206. public String getMobile() {
  207. return mobile;
  208. }
  209. public void setMobile(String mobile) {
  210. this.mobile = mobile;
  211. }
  212. public String getPassword() {
  213. return password;
  214. }
  215. public void setPassword(String password) {
  216. this.password = password;
  217. }
  218. public String getNickname() {
  219. return nickname;
  220. }
  221. public void setNickname(String nickname) {
  222. this.nickname = nickname;
  223. }
  224. public String getEmail() {
  225. return email;
  226. }
  227. public void setEmail(String email) {
  228. this.email = email;
  229. }
  230. public Date getCreateTime() {
  231. return createTime;
  232. }
  233. public void setCreateTime(Date createTime) {
  234. this.createTime = createTime;
  235. }
  236. public Long getNumber() {
  237. return number;
  238. }
  239. public void setNumber(Long number) {
  240. this.number = number;
  241. }
  242. public Integer getLvl() {
  243. return lvl;
  244. }
  245. public void setLvl(Integer lvl) {
  246. this.lvl = lvl;
  247. }
  248. public Integer getType() {
  249. return type;
  250. }
  251. public void setType(Integer type) {
  252. this.type = type;
  253. }
  254. public String getAid() {
  255. return aid;
  256. }
  257. public void setAid(String aid) {
  258. this.aid = aid;
  259. }
  260. public String getMid() {
  261. return mid;
  262. }
  263. public void setMid(String mid) {
  264. this.mid = mid;
  265. }
  266. public Integer getStatus() {
  267. return status;
  268. }
  269. public void setStatus(Integer status) {
  270. this.status = status;
  271. }
  272. public Integer getSource() {
  273. return source;
  274. }
  275. public void setSource(Integer source) {
  276. this.source = source;
  277. }
  278. public Date getUpdateTime() {
  279. return updateTime;
  280. }
  281. public void setUpdateTime(Date updateTime) {
  282. this.updateTime = updateTime;
  283. }
  284. public String getCompanyLogoUrl() {
  285. return companyLogoUrl;
  286. }
  287. public void setCompanyLogoUrl(String companyLogoUrl) {
  288. this.companyLogoUrl = companyLogoUrl;
  289. }
  290. public String getHeadPortraitUrl() {
  291. return headPortraitUrl;
  292. }
  293. public void setHeadPortraitUrl(String headPortraitUrl) {
  294. this.headPortraitUrl = headPortraitUrl;
  295. }
  296. public String getSocietyTag() {
  297. return societyTag;
  298. }
  299. public void setSocietyTag(String societyTag) {
  300. this.societyTag = societyTag;
  301. }
  302. public String getIntroduction() {
  303. return introduction;
  304. }
  305. public void setIntroduction(String introduction) {
  306. this.introduction = introduction;
  307. }
  308. public String getValueAddedTag() {
  309. return valueAddedTag;
  310. }
  311. public void setValueAddedTag(String valueAddedTag) {
  312. this.valueAddedTag = valueAddedTag;
  313. }
  314. public String getOrganizationId() {
  315. return organizationId;
  316. }
  317. public void setOrganizationId(String organizationId) {
  318. this.organizationId = organizationId;
  319. }
  320. public Integer getShareType() {
  321. return shareType;
  322. }
  323. public void setShareType(Integer shareType) {
  324. this.shareType = shareType;
  325. }
  326. public String getIdentifyName() {
  327. return identifyName;
  328. }
  329. public void setIdentifyName(String identifyName) {
  330. this.identifyName = identifyName;
  331. }
  332. public String getBackgroundUrl() {
  333. return backgroundUrl;
  334. }
  335. public void setBackgroundUrl(String backgroundUrl) {
  336. this.backgroundUrl = backgroundUrl;
  337. }
  338. public Integer getAuditStatus() {
  339. return auditStatus;
  340. }
  341. public void setAuditStatus(Integer auditStatus) {
  342. this.auditStatus = auditStatus;
  343. }
  344. public String getAuditOpinion() {
  345. return auditOpinion;
  346. }
  347. public void setAuditOpinion(String auditOpinion) {
  348. this.auditOpinion = auditOpinion;
  349. }
  350. public Date getTransferTime() {
  351. return transferTime;
  352. }
  353. public void setTransferTime(Date transferTime) {
  354. this.transferTime = transferTime;
  355. }
  356. public String getInformationMaintainer() {
  357. return informationMaintainer;
  358. }
  359. public void setInformationMaintainer(String informationMaintainer) {
  360. this.informationMaintainer = informationMaintainer;
  361. }
  362. public String getCoreTechnology() {
  363. return coreTechnology;
  364. }
  365. public void setCoreTechnology(String coreTechnology) {
  366. this.coreTechnology = coreTechnology;
  367. }
  368. public String getAccomplishSituation() {
  369. return accomplishSituation;
  370. }
  371. public void setAccomplishSituation(String accomplishSituation) {
  372. this.accomplishSituation = accomplishSituation;
  373. }
  374. public String getIntellectualProperty() {
  375. return intellectualProperty;
  376. }
  377. public void setIntellectualProperty(String intellectualProperty) {
  378. this.intellectualProperty = intellectualProperty;
  379. }
  380. public Integer getCreditRating() {
  381. return creditRating;
  382. }
  383. public void setCreditRating(Integer creditRating) {
  384. this.creditRating = creditRating;
  385. }
  386. public Integer getLevel() {
  387. return level;
  388. }
  389. public void setLevel(Integer level) {
  390. this.level = level;
  391. }
  392. public Integer getAuthentication() {
  393. return authentication;
  394. }
  395. public void setAuthentication(Integer authentication) {
  396. this.authentication = authentication;
  397. }
  398. public String getUsername() {
  399. return username;
  400. }
  401. public void setUsername(String username) {
  402. this.username = username;
  403. }
  404. public Double getIntegrity() {
  405. return integrity;
  406. }
  407. public void setIntegrity(Double integrity) {
  408. this.integrity = integrity;
  409. }
  410. public String getToInviteCode() {
  411. return toInviteCode;
  412. }
  413. public void setToInviteCode(String toInviteCode) {
  414. this.toInviteCode = toInviteCode;
  415. }
  416. public String getBeInviteCode() {
  417. return beInviteCode;
  418. }
  419. public void setBeInviteCode(String beInviteCode) {
  420. this.beInviteCode = beInviteCode;
  421. }
  422. public Integer getGuidance() {
  423. return guidance;
  424. }
  425. public void setGuidance(Integer guidance) {
  426. this.guidance = guidance;
  427. }
  428. public Integer getSignBills() {
  429. return signBills;
  430. }
  431. public void setSignBills(Integer signBills) {
  432. this.signBills = signBills;
  433. }
  434. public Integer getChannel() {
  435. return channel;
  436. }
  437. public void setChannel(Integer channel) {
  438. this.channel = channel;
  439. }
  440. public Integer getNewChannel() {
  441. return newChannel;
  442. }
  443. public void setNewChannel(Integer newChannel) {
  444. this.newChannel = newChannel;
  445. }
  446. public Date getSignTime() {
  447. return signTime;
  448. }
  449. public void setSignTime(Date signTime) {
  450. this.signTime = signTime;
  451. }
  452. public Integer getCallStatus() {
  453. return callStatus;
  454. }
  455. public void setCallStatus(Integer callStatus) {
  456. this.callStatus = callStatus;
  457. }
  458. public Integer getClueStatus() {
  459. return clueStatus;
  460. }
  461. public void setClueStatus(Integer clueStatus) {
  462. this.clueStatus = clueStatus;
  463. }
  464. public Integer getClueProcess() {
  465. return clueProcess;
  466. }
  467. public void setClueProcess(Integer clueProcess) {
  468. this.clueProcess = clueProcess;
  469. }
  470. public Date getClueTime() {
  471. return clueTime;
  472. }
  473. public void setClueTime(Date clueTime) {
  474. this.clueTime = clueTime;
  475. }
  476. public String getClueAid() {
  477. return clueAid;
  478. }
  479. public void setClueAid(String clueAid) {
  480. this.clueAid = clueAid;
  481. }
  482. public Date getClueTransferTime() {
  483. return clueTransferTime;
  484. }
  485. public void setClueTransferTime(Date clueTransferTime) {
  486. this.clueTransferTime = clueTransferTime;
  487. }
  488. }