UserEntity.php 30 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420
  1. <?php
  2. namespace app\entity\data\user;
  3. use app\entity\data\DataEntity;
  4. class UserEntity extends DataEntity
  5. {
  6. public $uid = 0; // 用户id
  7. public $wechatUserId = '0'; // 微信用户id
  8. public $aliUserId = '0'; // 支付宝用户id
  9. public $account = ''; // 用户账号
  10. public $pwd = ''; // 用户密码
  11. public $realName = ''; // 真实姓名
  12. public $spreadUid = 0; // 推广员id
  13. public $sex = 0; // 性别
  14. public $birthday = null; // 生日
  15. public $cardId = ''; // 身份证号码
  16. public $mark = ''; // 用户备注
  17. public $labelId = null; // 用户标签id
  18. public $groupId = 11; // 用户分组id
  19. public $nickname = ''; // 用户昵称
  20. public $avatar = ''; // 用户头像
  21. public $phone = ''; // 手机号码
  22. public $address = ''; // 地址
  23. public $createTime = ''; // 添加时间
  24. public $lastTime = null; // 最后一次登录时间
  25. public $lastIp = ''; // 最后一次登录ip
  26. public $score = 0.00; // 积分
  27. public $nowMoney = 0.00; // 用户余额
  28. public $brokeragePrice = 0.00; // 佣金金额
  29. public $repurchasePrice = 0.00; // 复购余额
  30. public $memberBrokeragePrice = 0.00; // 会员商品直推佣金
  31. public $status = 1; // 用户状态
  32. public $spreadTime = null; // 推广员关联时间
  33. public $userType = ''; // 用户类型
  34. public $promoterTime = null; // 推广员成功时间
  35. public $nowScore = null; // 用户积分
  36. public $isPromoter = 0; // 是否为推广员
  37. public $mainUid = 0; // 主账号
  38. public $payCount = 0; // 用户购买次数
  39. public $payPrice = 0.00; // 用户消费金额
  40. public $spreadCount = 0; // 下级人数
  41. public $adrId = null; // 区域id
  42. public $identity = 0; // 用户身份
  43. public $merId = 0; // 首次消费绑定商户
  44. public $merTopping = null; // 置顶商户
  45. public $userName = null; // 用户名
  46. public $annuityFrozen = 0.00; // 养老金冻结金额
  47. public $annuityNum = 0; // 养老金笔数
  48. public $annuity = 0.00; // 养老金
  49. public $agentRebate = 0.00; // 推荐推广员返利
  50. public $merRebate = 0.00; // 推荐商户返利
  51. public $promoterRebate = 0.00; // 推荐代理返利
  52. public $crossStore = 0.00; // 跨店收入
  53. public $jurisdiction = 0.00; // 辖区内收入
  54. public $otherJurisdictions = 0.00; // 跨区收入
  55. public $advFee = 0.00; // 广告费
  56. public $xqxiaofei = 0.00; // 自己辖区消费返利
  57. public $birthday60 = null; // 60岁生日
  58. public $cardNumber = null; // 养老金卡号
  59. public $annuityYiqu = 0.00; // 已支取养老金
  60. public $isNew = '0'; // 是否为新用户
  61. public $adminAgentRate = null; // 平台收入
  62. public $locktime = null; // 会员锁定时间
  63. public $userNumber = null; // 用户编号
  64. public $im = 0; // 环信账号注册状态
  65. public $imUuid = null; // 环信UUID
  66. public $imUserid = null; // 环信用户名
  67. public $imPassword = null; // 环信密码
  68. public $testUser = 0; // 是否是测试用户
  69. public $isChannel = 0; // 是否是渠道商
  70. public $annuityOnce = 0; // 是否结算过养老金
  71. public $firstSign = 0; // 是否首次签到
  72. public $isDel = 0; // 是否删除
  73. public $firstShopping = 0; // 是否首次消费
  74. public $external = 1; // 用户来源
  75. public $externalId = null; // 外部用户ID
  76. public $scoreBeishengtang = 0.00; // 北参堂积分
  77. public $levelId = 0; // 等级id
  78. public $level = 0; // 用户等级
  79. public $isShow = 1; // 用户来源显示状态
  80. public $userGroup = 1; // 用户组别
  81. public $upVipTime = null; // 升级为大v时间
  82. public $upAgencyTime = null; // 升级代理时间
  83. public $manageAddress = null; // 管理区域id串
  84. public $isShopPartner = 0; // 是否是创客合伙人
  85. public $contribute = 0.00; // 贡献值
  86. public $jingdou = 0.00; // 金豆
  87. public $vr = 0.00; // 购物金
  88. public $pv = 0.00; // pv值
  89. public $hongbao = 0.00; // 红包奖励
  90. public $oldVipLimit = 0.00; // 老会员购买额度
  91. public $isOld = 0; // 是否为老系统用户
  92. public $fugou = 0.00; // 复购金
  93. public $jbpIdOld = 0; // 聚宝盆1.0 父级id
  94. public $unameOld = null; // 聚宝盆1.0 用户名
  95. public $amountOld = 0.00; // 聚宝盆1.0 佣金
  96. public $spreadOld = 0; // 聚宝盆1.0 上级
  97. public $inviteIdOd = null; // 聚宝盆1.0 上级ID
  98. public $isTeamOld = '0'; // 聚宝盆1.0 是否共建联盟
  99. public $serverIdOld = 0; // 聚宝盆1.0 服务中心
  100. public $parentIdsOld = null; // 聚宝盆1.0 父级id集合
  101. public $userLevelIdOld = 0; // 聚宝盆1.0 权益等级
  102. public $originatorIdOld = 0; // 聚宝盆1.0 联创等级
  103. public $totalAmountOld = 0.00; // 聚宝盆1.0 累计佣金
  104. public $totalWithdrawQuotaOld = 0.00; // 聚宝盆1.0 提现额度
  105. public $tobeAmountOld = 0.00; // 聚宝盆1.0 冻结佣金
  106. public $perContribute = 0.00; // 直推贡献值
  107. public $withdrawQuotaOld = 0.00; // 聚宝盆1.0 提现额度
  108. public $identityUpTime = null; // 身份升级时间
  109. public function getUid(): int
  110. {
  111. return $this->uid;
  112. }
  113. public function setUid(int $uid): UserEntity
  114. {
  115. $this->uid = $uid;
  116. return $this;
  117. }
  118. public function getWechatUserId(): string
  119. {
  120. return $this->wechatUserId;
  121. }
  122. public function setWechatUserId(string $wechatUserId): UserEntity
  123. {
  124. $this->wechatUserId = $wechatUserId;
  125. return $this;
  126. }
  127. public function getAliUserId(): string
  128. {
  129. return $this->aliUserId;
  130. }
  131. public function setAliUserId(string $aliUserId): UserEntity
  132. {
  133. $this->aliUserId = $aliUserId;
  134. return $this;
  135. }
  136. public function getAccount(): string
  137. {
  138. return $this->account;
  139. }
  140. public function setAccount(string $account): UserEntity
  141. {
  142. $this->account = $account;
  143. return $this;
  144. }
  145. public function getPwd(): string
  146. {
  147. return $this->pwd;
  148. }
  149. public function setPwd(string $pwd): UserEntity
  150. {
  151. $this->pwd = $pwd;
  152. return $this;
  153. }
  154. public function getRealName(): string
  155. {
  156. return $this->realName;
  157. }
  158. public function setRealName(string $realName): UserEntity
  159. {
  160. $this->realName = $realName;
  161. return $this;
  162. }
  163. public function getSpreadUid(): int
  164. {
  165. return $this->spreadUid;
  166. }
  167. public function setSpreadUid(int $spreadUid): UserEntity
  168. {
  169. $this->spreadUid = $spreadUid;
  170. return $this;
  171. }
  172. public function getSex(): int
  173. {
  174. return $this->sex;
  175. }
  176. public function setSex(int $sex): UserEntity
  177. {
  178. $this->sex = $sex;
  179. return $this;
  180. }
  181. /**
  182. * @return null
  183. */
  184. public function getBirthday()
  185. {
  186. return $this->birthday;
  187. }
  188. /**
  189. * @param null $birthday
  190. * @return UserEntity
  191. */
  192. public function setBirthday($birthday)
  193. {
  194. $this->birthday = $birthday;
  195. return $this;
  196. }
  197. public function getCardId(): string
  198. {
  199. return $this->cardId;
  200. }
  201. public function setCardId(string $cardId): UserEntity
  202. {
  203. $this->cardId = $cardId;
  204. return $this;
  205. }
  206. public function getMark(): string
  207. {
  208. return $this->mark;
  209. }
  210. public function setMark(string $mark): UserEntity
  211. {
  212. $this->mark = $mark;
  213. return $this;
  214. }
  215. /**
  216. * @return null
  217. */
  218. public function getLabelId()
  219. {
  220. return $this->labelId;
  221. }
  222. /**
  223. * @param null $labelId
  224. * @return UserEntity
  225. */
  226. public function setLabelId($labelId)
  227. {
  228. $this->labelId = $labelId;
  229. return $this;
  230. }
  231. public function getGroupId(): int
  232. {
  233. return $this->groupId;
  234. }
  235. public function setGroupId(int $groupId): UserEntity
  236. {
  237. $this->groupId = $groupId;
  238. return $this;
  239. }
  240. public function getNickname(): string
  241. {
  242. return $this->nickname;
  243. }
  244. public function setNickname(string $nickname): UserEntity
  245. {
  246. $this->nickname = $nickname;
  247. return $this;
  248. }
  249. public function getAvatar(): string
  250. {
  251. return $this->avatar;
  252. }
  253. public function setAvatar(string $avatar): UserEntity
  254. {
  255. $this->avatar = $avatar;
  256. return $this;
  257. }
  258. public function getPhone(): string
  259. {
  260. return $this->phone;
  261. }
  262. public function setPhone(string $phone): UserEntity
  263. {
  264. $this->phone = $phone;
  265. return $this;
  266. }
  267. public function getAddress(): string
  268. {
  269. return $this->address;
  270. }
  271. public function setAddress(string $address): UserEntity
  272. {
  273. $this->address = $address;
  274. return $this;
  275. }
  276. public function getCreateTime(): string
  277. {
  278. return $this->createTime;
  279. }
  280. public function setCreateTime(string $createTime): UserEntity
  281. {
  282. $this->createTime = $createTime;
  283. return $this;
  284. }
  285. /**
  286. * @return null
  287. */
  288. public function getLastTime()
  289. {
  290. return $this->lastTime;
  291. }
  292. /**
  293. * @param null $lastTime
  294. * @return UserEntity
  295. */
  296. public function setLastTime($lastTime)
  297. {
  298. $this->lastTime = $lastTime;
  299. return $this;
  300. }
  301. public function getLastIp(): string
  302. {
  303. return $this->lastIp;
  304. }
  305. public function setLastIp(string $lastIp): UserEntity
  306. {
  307. $this->lastIp = $lastIp;
  308. return $this;
  309. }
  310. public function getScore(): float
  311. {
  312. return $this->score;
  313. }
  314. public function setScore(float $score): UserEntity
  315. {
  316. $this->score = $score;
  317. return $this;
  318. }
  319. public function getNowMoney(): float
  320. {
  321. return $this->nowMoney;
  322. }
  323. public function setNowMoney(float $nowMoney): UserEntity
  324. {
  325. $this->nowMoney = $nowMoney;
  326. return $this;
  327. }
  328. public function getBrokeragePrice(): float
  329. {
  330. return $this->brokeragePrice;
  331. }
  332. public function setBrokeragePrice(float $brokeragePrice): UserEntity
  333. {
  334. $this->brokeragePrice = $brokeragePrice;
  335. return $this;
  336. }
  337. public function getRepurchasePrice(): float
  338. {
  339. return $this->repurchasePrice;
  340. }
  341. public function setRepurchasePrice(float $repurchasePrice): UserEntity
  342. {
  343. $this->repurchasePrice = $repurchasePrice;
  344. return $this;
  345. }
  346. public function getMemberBrokeragePrice(): float
  347. {
  348. return $this->memberBrokeragePrice;
  349. }
  350. public function setMemberBrokeragePrice(float $memberBrokeragePrice): UserEntity
  351. {
  352. $this->memberBrokeragePrice = $memberBrokeragePrice;
  353. return $this;
  354. }
  355. public function getStatus(): int
  356. {
  357. return $this->status;
  358. }
  359. public function setStatus(int $status): UserEntity
  360. {
  361. $this->status = $status;
  362. return $this;
  363. }
  364. /**
  365. * @return null
  366. */
  367. public function getSpreadTime()
  368. {
  369. return $this->spreadTime;
  370. }
  371. /**
  372. * @param null $spreadTime
  373. * @return UserEntity
  374. */
  375. public function setSpreadTime($spreadTime)
  376. {
  377. $this->spreadTime = $spreadTime;
  378. return $this;
  379. }
  380. public function getUserType(): string
  381. {
  382. return $this->userType;
  383. }
  384. public function setUserType(string $userType): UserEntity
  385. {
  386. $this->userType = $userType;
  387. return $this;
  388. }
  389. /**
  390. * @return null
  391. */
  392. public function getPromoterTime()
  393. {
  394. return $this->promoterTime;
  395. }
  396. /**
  397. * @param null $promoterTime
  398. * @return UserEntity
  399. */
  400. public function setPromoterTime($promoterTime)
  401. {
  402. $this->promoterTime = $promoterTime;
  403. return $this;
  404. }
  405. /**
  406. * @return null
  407. */
  408. public function getNowScore()
  409. {
  410. return $this->nowScore;
  411. }
  412. /**
  413. * @param null $nowScore
  414. * @return UserEntity
  415. */
  416. public function setNowScore($nowScore)
  417. {
  418. $this->nowScore = $nowScore;
  419. return $this;
  420. }
  421. public function getIsPromoter(): int
  422. {
  423. return $this->isPromoter;
  424. }
  425. public function setIsPromoter(int $isPromoter): UserEntity
  426. {
  427. $this->isPromoter = $isPromoter;
  428. return $this;
  429. }
  430. public function getMainUid(): int
  431. {
  432. return $this->mainUid;
  433. }
  434. public function setMainUid(int $mainUid): UserEntity
  435. {
  436. $this->mainUid = $mainUid;
  437. return $this;
  438. }
  439. public function getPayCount(): int
  440. {
  441. return $this->payCount;
  442. }
  443. public function setPayCount(int $payCount): UserEntity
  444. {
  445. $this->payCount = $payCount;
  446. return $this;
  447. }
  448. public function getPayPrice(): float
  449. {
  450. return $this->payPrice;
  451. }
  452. public function setPayPrice(float $payPrice): UserEntity
  453. {
  454. $this->payPrice = $payPrice;
  455. return $this;
  456. }
  457. public function getSpreadCount(): int
  458. {
  459. return $this->spreadCount;
  460. }
  461. public function setSpreadCount(int $spreadCount): UserEntity
  462. {
  463. $this->spreadCount = $spreadCount;
  464. return $this;
  465. }
  466. /**
  467. * @return null
  468. */
  469. public function getAdrId()
  470. {
  471. return $this->adrId;
  472. }
  473. /**
  474. * @param null $adrId
  475. * @return UserEntity
  476. */
  477. public function setAdrId($adrId)
  478. {
  479. $this->adrId = $adrId;
  480. return $this;
  481. }
  482. public function getIdentity(): int
  483. {
  484. return $this->identity;
  485. }
  486. public function setIdentity(int $identity): UserEntity
  487. {
  488. $this->identity = $identity;
  489. return $this;
  490. }
  491. public function getMerId(): int
  492. {
  493. return $this->merId;
  494. }
  495. public function setMerId(int $merId): UserEntity
  496. {
  497. $this->merId = $merId;
  498. return $this;
  499. }
  500. /**
  501. * @return null
  502. */
  503. public function getMerTopping()
  504. {
  505. return $this->merTopping;
  506. }
  507. /**
  508. * @param null $merTopping
  509. * @return UserEntity
  510. */
  511. public function setMerTopping($merTopping)
  512. {
  513. $this->merTopping = $merTopping;
  514. return $this;
  515. }
  516. /**
  517. * @return null
  518. */
  519. public function getUserName()
  520. {
  521. return $this->userName;
  522. }
  523. /**
  524. * @param null $userName
  525. * @return UserEntity
  526. */
  527. public function setUserName($userName)
  528. {
  529. $this->userName = $userName;
  530. return $this;
  531. }
  532. public function getAnnuityFrozen(): float
  533. {
  534. return $this->annuityFrozen;
  535. }
  536. public function setAnnuityFrozen(float $annuityFrozen): UserEntity
  537. {
  538. $this->annuityFrozen = $annuityFrozen;
  539. return $this;
  540. }
  541. public function getAnnuityNum(): int
  542. {
  543. return $this->annuityNum;
  544. }
  545. public function setAnnuityNum(int $annuityNum): UserEntity
  546. {
  547. $this->annuityNum = $annuityNum;
  548. return $this;
  549. }
  550. public function getAnnuity(): float
  551. {
  552. return $this->annuity;
  553. }
  554. public function setAnnuity(float $annuity): UserEntity
  555. {
  556. $this->annuity = $annuity;
  557. return $this;
  558. }
  559. public function getAgentRebate(): float
  560. {
  561. return $this->agentRebate;
  562. }
  563. public function setAgentRebate(float $agentRebate): UserEntity
  564. {
  565. $this->agentRebate = $agentRebate;
  566. return $this;
  567. }
  568. public function getMerRebate(): float
  569. {
  570. return $this->merRebate;
  571. }
  572. public function setMerRebate(float $merRebate): UserEntity
  573. {
  574. $this->merRebate = $merRebate;
  575. return $this;
  576. }
  577. public function getPromoterRebate(): float
  578. {
  579. return $this->promoterRebate;
  580. }
  581. public function setPromoterRebate(float $promoterRebate): UserEntity
  582. {
  583. $this->promoterRebate = $promoterRebate;
  584. return $this;
  585. }
  586. public function getCrossStore(): float
  587. {
  588. return $this->crossStore;
  589. }
  590. public function setCrossStore(float $crossStore): UserEntity
  591. {
  592. $this->crossStore = $crossStore;
  593. return $this;
  594. }
  595. public function getJurisdiction(): float
  596. {
  597. return $this->jurisdiction;
  598. }
  599. public function setJurisdiction(float $jurisdiction): UserEntity
  600. {
  601. $this->jurisdiction = $jurisdiction;
  602. return $this;
  603. }
  604. public function getOtherJurisdictions(): float
  605. {
  606. return $this->otherJurisdictions;
  607. }
  608. public function setOtherJurisdictions(float $otherJurisdictions): UserEntity
  609. {
  610. $this->otherJurisdictions = $otherJurisdictions;
  611. return $this;
  612. }
  613. public function getAdvFee(): float
  614. {
  615. return $this->advFee;
  616. }
  617. public function setAdvFee(float $advFee): UserEntity
  618. {
  619. $this->advFee = $advFee;
  620. return $this;
  621. }
  622. public function getXqxiaofei(): float
  623. {
  624. return $this->xqxiaofei;
  625. }
  626. public function setXqxiaofei(float $xqxiaofei): UserEntity
  627. {
  628. $this->xqxiaofei = $xqxiaofei;
  629. return $this;
  630. }
  631. /**
  632. * @return null
  633. */
  634. public function getBirthday60()
  635. {
  636. return $this->birthday60;
  637. }
  638. /**
  639. * @param null $birthday60
  640. * @return UserEntity
  641. */
  642. public function setBirthday60($birthday60)
  643. {
  644. $this->birthday60 = $birthday60;
  645. return $this;
  646. }
  647. /**
  648. * @return null
  649. */
  650. public function getCardNumber()
  651. {
  652. return $this->cardNumber;
  653. }
  654. /**
  655. * @param null $cardNumber
  656. * @return UserEntity
  657. */
  658. public function setCardNumber($cardNumber)
  659. {
  660. $this->cardNumber = $cardNumber;
  661. return $this;
  662. }
  663. public function getAnnuityYiqu(): float
  664. {
  665. return $this->annuityYiqu;
  666. }
  667. public function setAnnuityYiqu(float $annuityYiqu): UserEntity
  668. {
  669. $this->annuityYiqu = $annuityYiqu;
  670. return $this;
  671. }
  672. public function getIsNew(): string
  673. {
  674. return $this->isNew;
  675. }
  676. public function setIsNew(string $isNew): UserEntity
  677. {
  678. $this->isNew = $isNew;
  679. return $this;
  680. }
  681. /**
  682. * @return null
  683. */
  684. public function getAdminAgentRate()
  685. {
  686. return $this->adminAgentRate;
  687. }
  688. /**
  689. * @param null $adminAgentRate
  690. * @return UserEntity
  691. */
  692. public function setAdminAgentRate($adminAgentRate)
  693. {
  694. $this->adminAgentRate = $adminAgentRate;
  695. return $this;
  696. }
  697. /**
  698. * @return null
  699. */
  700. public function getLocktime()
  701. {
  702. return $this->locktime;
  703. }
  704. /**
  705. * @param null $locktime
  706. * @return UserEntity
  707. */
  708. public function setLocktime($locktime)
  709. {
  710. $this->locktime = $locktime;
  711. return $this;
  712. }
  713. /**
  714. * @return null
  715. */
  716. public function getUserNumber()
  717. {
  718. return $this->userNumber;
  719. }
  720. /**
  721. * @param null $userNumber
  722. * @return UserEntity
  723. */
  724. public function setUserNumber($userNumber)
  725. {
  726. $this->userNumber = $userNumber;
  727. return $this;
  728. }
  729. public function getIm(): int
  730. {
  731. return $this->im;
  732. }
  733. public function setIm(int $im): UserEntity
  734. {
  735. $this->im = $im;
  736. return $this;
  737. }
  738. /**
  739. * @return null
  740. */
  741. public function getImUuid()
  742. {
  743. return $this->imUuid;
  744. }
  745. /**
  746. * @param null $imUuid
  747. * @return UserEntity
  748. */
  749. public function setImUuid($imUuid)
  750. {
  751. $this->imUuid = $imUuid;
  752. return $this;
  753. }
  754. /**
  755. * @return null
  756. */
  757. public function getImUserid()
  758. {
  759. return $this->imUserid;
  760. }
  761. /**
  762. * @param null $imUserid
  763. * @return UserEntity
  764. */
  765. public function setImUserid($imUserid)
  766. {
  767. $this->imUserid = $imUserid;
  768. return $this;
  769. }
  770. /**
  771. * @return null
  772. */
  773. public function getImPassword()
  774. {
  775. return $this->imPassword;
  776. }
  777. /**
  778. * @param null $imPassword
  779. * @return UserEntity
  780. */
  781. public function setImPassword($imPassword)
  782. {
  783. $this->imPassword = $imPassword;
  784. return $this;
  785. }
  786. public function getTestUser(): int
  787. {
  788. return $this->testUser;
  789. }
  790. public function setTestUser(int $testUser): UserEntity
  791. {
  792. $this->testUser = $testUser;
  793. return $this;
  794. }
  795. public function getIsChannel(): int
  796. {
  797. return $this->isChannel;
  798. }
  799. public function setIsChannel(int $isChannel): UserEntity
  800. {
  801. $this->isChannel = $isChannel;
  802. return $this;
  803. }
  804. public function getAnnuityOnce(): int
  805. {
  806. return $this->annuityOnce;
  807. }
  808. public function setAnnuityOnce(int $annuityOnce): UserEntity
  809. {
  810. $this->annuityOnce = $annuityOnce;
  811. return $this;
  812. }
  813. public function getFirstSign(): int
  814. {
  815. return $this->firstSign;
  816. }
  817. public function setFirstSign(int $firstSign): UserEntity
  818. {
  819. $this->firstSign = $firstSign;
  820. return $this;
  821. }
  822. public function getIsDel(): int
  823. {
  824. return $this->isDel;
  825. }
  826. public function setIsDel(int $isDel): UserEntity
  827. {
  828. $this->isDel = $isDel;
  829. return $this;
  830. }
  831. public function getFirstShopping(): int
  832. {
  833. return $this->firstShopping;
  834. }
  835. public function setFirstShopping(int $firstShopping): UserEntity
  836. {
  837. $this->firstShopping = $firstShopping;
  838. return $this;
  839. }
  840. public function getExternal(): int
  841. {
  842. return $this->external;
  843. }
  844. public function setExternal(int $external): UserEntity
  845. {
  846. $this->external = $external;
  847. return $this;
  848. }
  849. /**
  850. * @return null
  851. */
  852. public function getExternalId()
  853. {
  854. return $this->externalId;
  855. }
  856. /**
  857. * @param null $externalId
  858. * @return UserEntity
  859. */
  860. public function setExternalId($externalId)
  861. {
  862. $this->externalId = $externalId;
  863. return $this;
  864. }
  865. public function getScoreBeishengtang(): float
  866. {
  867. return $this->scoreBeishengtang;
  868. }
  869. public function setScoreBeishengtang(float $scoreBeishengtang): UserEntity
  870. {
  871. $this->scoreBeishengtang = $scoreBeishengtang;
  872. return $this;
  873. }
  874. public function getLevelId(): int
  875. {
  876. return $this->levelId;
  877. }
  878. public function setLevelId(int $levelId): UserEntity
  879. {
  880. $this->levelId = $levelId;
  881. return $this;
  882. }
  883. public function getLevel(): int
  884. {
  885. return $this->level;
  886. }
  887. public function setLevel(int $level): UserEntity
  888. {
  889. $this->level = $level;
  890. return $this;
  891. }
  892. public function getIsShow(): int
  893. {
  894. return $this->isShow;
  895. }
  896. public function setIsShow(int $isShow): UserEntity
  897. {
  898. $this->isShow = $isShow;
  899. return $this;
  900. }
  901. public function getUserGroup(): int
  902. {
  903. return $this->userGroup;
  904. }
  905. public function setUserGroup(int $userGroup): UserEntity
  906. {
  907. $this->userGroup = $userGroup;
  908. return $this;
  909. }
  910. /**
  911. * @return null
  912. */
  913. public function getUpVipTime()
  914. {
  915. return $this->upVipTime;
  916. }
  917. /**
  918. * @param null $upVipTime
  919. * @return UserEntity
  920. */
  921. public function setUpVipTime($upVipTime)
  922. {
  923. $this->upVipTime = $upVipTime;
  924. return $this;
  925. }
  926. /**
  927. * @return null
  928. */
  929. public function getUpAgencyTime()
  930. {
  931. return $this->upAgencyTime;
  932. }
  933. /**
  934. * @param null $upAgencyTime
  935. * @return UserEntity
  936. */
  937. public function setUpAgencyTime($upAgencyTime)
  938. {
  939. $this->upAgencyTime = $upAgencyTime;
  940. return $this;
  941. }
  942. /**
  943. * @return null
  944. */
  945. public function getManageAddress()
  946. {
  947. return $this->manageAddress;
  948. }
  949. /**
  950. * @param null $manageAddress
  951. * @return UserEntity
  952. */
  953. public function setManageAddress($manageAddress)
  954. {
  955. $this->manageAddress = $manageAddress;
  956. return $this;
  957. }
  958. public function getIsShopPartner(): int
  959. {
  960. return $this->isShopPartner;
  961. }
  962. public function setIsShopPartner(int $isShopPartner): UserEntity
  963. {
  964. $this->isShopPartner = $isShopPartner;
  965. return $this;
  966. }
  967. public function getContribute(): float
  968. {
  969. return $this->contribute;
  970. }
  971. public function setContribute(float $contribute): UserEntity
  972. {
  973. $this->contribute = $contribute;
  974. return $this;
  975. }
  976. public function getJingdou(): float
  977. {
  978. return $this->jingdou;
  979. }
  980. public function setJingdou(float $jingdou): UserEntity
  981. {
  982. $this->jingdou = $jingdou;
  983. return $this;
  984. }
  985. public function getVr(): float
  986. {
  987. return $this->vr;
  988. }
  989. public function setVr(float $vr): UserEntity
  990. {
  991. $this->vr = $vr;
  992. return $this;
  993. }
  994. public function getPv(): float
  995. {
  996. return $this->pv;
  997. }
  998. public function setPv(float $pv): UserEntity
  999. {
  1000. $this->pv = $pv;
  1001. return $this;
  1002. }
  1003. public function getHongbao(): float
  1004. {
  1005. return $this->hongbao;
  1006. }
  1007. public function setHongbao(float $hongbao): UserEntity
  1008. {
  1009. $this->hongbao = $hongbao;
  1010. return $this;
  1011. }
  1012. public function getOldVipLimit(): float
  1013. {
  1014. return $this->oldVipLimit;
  1015. }
  1016. public function setOldVipLimit(float $oldVipLimit): UserEntity
  1017. {
  1018. $this->oldVipLimit = $oldVipLimit;
  1019. return $this;
  1020. }
  1021. public function getIsOld(): int
  1022. {
  1023. return $this->isOld;
  1024. }
  1025. public function setIsOld(int $isOld): UserEntity
  1026. {
  1027. $this->isOld = $isOld;
  1028. return $this;
  1029. }
  1030. public function getFugou(): float
  1031. {
  1032. return $this->fugou;
  1033. }
  1034. public function setFugou(float $fugou): UserEntity
  1035. {
  1036. $this->fugou = $fugou;
  1037. return $this;
  1038. }
  1039. public function getJbpIdOld(): int
  1040. {
  1041. return $this->jbpIdOld;
  1042. }
  1043. public function setJbpIdOld(int $jbpIdOld): UserEntity
  1044. {
  1045. $this->jbpIdOld = $jbpIdOld;
  1046. return $this;
  1047. }
  1048. /**
  1049. * @return null
  1050. */
  1051. public function getUnameOld()
  1052. {
  1053. return $this->unameOld;
  1054. }
  1055. /**
  1056. * @param null $unameOld
  1057. * @return UserEntity
  1058. */
  1059. public function setUnameOld($unameOld)
  1060. {
  1061. $this->unameOld = $unameOld;
  1062. return $this;
  1063. }
  1064. public function getAmountOld(): float
  1065. {
  1066. return $this->amountOld;
  1067. }
  1068. public function setAmountOld(float $amountOld): UserEntity
  1069. {
  1070. $this->amountOld = $amountOld;
  1071. return $this;
  1072. }
  1073. public function getSpreadOld(): int
  1074. {
  1075. return $this->spreadOld;
  1076. }
  1077. public function setSpreadOld(int $spreadOld): UserEntity
  1078. {
  1079. $this->spreadOld = $spreadOld;
  1080. return $this;
  1081. }
  1082. /**
  1083. * @return null
  1084. */
  1085. public function getInviteIdOd()
  1086. {
  1087. return $this->inviteIdOd;
  1088. }
  1089. /**
  1090. * @param null $inviteIdOd
  1091. * @return UserEntity
  1092. */
  1093. public function setInviteIdOd($inviteIdOd)
  1094. {
  1095. $this->inviteIdOd = $inviteIdOd;
  1096. return $this;
  1097. }
  1098. public function getIsTeamOld(): string
  1099. {
  1100. return $this->isTeamOld;
  1101. }
  1102. public function setIsTeamOld(string $isTeamOld): UserEntity
  1103. {
  1104. $this->isTeamOld = $isTeamOld;
  1105. return $this;
  1106. }
  1107. public function getServerIdOld(): int
  1108. {
  1109. return $this->serverIdOld;
  1110. }
  1111. public function setServerIdOld(int $serverIdOld): UserEntity
  1112. {
  1113. $this->serverIdOld = $serverIdOld;
  1114. return $this;
  1115. }
  1116. /**
  1117. * @return null
  1118. */
  1119. public function getParentIdsOld()
  1120. {
  1121. return $this->parentIdsOld;
  1122. }
  1123. /**
  1124. * @param null $parentIdsOld
  1125. * @return UserEntity
  1126. */
  1127. public function setParentIdsOld($parentIdsOld)
  1128. {
  1129. $this->parentIdsOld = $parentIdsOld;
  1130. return $this;
  1131. }
  1132. public function getUserLevelIdOld(): int
  1133. {
  1134. return $this->userLevelIdOld;
  1135. }
  1136. public function setUserLevelIdOld(int $userLevelIdOld): UserEntity
  1137. {
  1138. $this->userLevelIdOld = $userLevelIdOld;
  1139. return $this;
  1140. }
  1141. public function getOriginatorIdOld(): int
  1142. {
  1143. return $this->originatorIdOld;
  1144. }
  1145. public function setOriginatorIdOld(int $originatorIdOld): UserEntity
  1146. {
  1147. $this->originatorIdOld = $originatorIdOld;
  1148. return $this;
  1149. }
  1150. public function getTotalAmountOld(): float
  1151. {
  1152. return $this->totalAmountOld;
  1153. }
  1154. public function setTotalAmountOld(float $totalAmountOld): UserEntity
  1155. {
  1156. $this->totalAmountOld = $totalAmountOld;
  1157. return $this;
  1158. }
  1159. public function getTotalWithdrawQuotaOld(): float
  1160. {
  1161. return $this->totalWithdrawQuotaOld;
  1162. }
  1163. public function setTotalWithdrawQuotaOld(float $totalWithdrawQuotaOld): UserEntity
  1164. {
  1165. $this->totalWithdrawQuotaOld = $totalWithdrawQuotaOld;
  1166. return $this;
  1167. }
  1168. public function getTobeAmountOld(): float
  1169. {
  1170. return $this->tobeAmountOld;
  1171. }
  1172. public function setTobeAmountOld(float $tobeAmountOld): UserEntity
  1173. {
  1174. $this->tobeAmountOld = $tobeAmountOld;
  1175. return $this;
  1176. }
  1177. public function getPerContribute(): float
  1178. {
  1179. return $this->perContribute;
  1180. }
  1181. public function setPerContribute(float $perContribute): UserEntity
  1182. {
  1183. $this->perContribute = $perContribute;
  1184. return $this;
  1185. }
  1186. public function getWithdrawQuotaOld(): float
  1187. {
  1188. return $this->withdrawQuotaOld;
  1189. }
  1190. public function setWithdrawQuotaOld(float $withdrawQuotaOld): UserEntity
  1191. {
  1192. $this->withdrawQuotaOld = $withdrawQuotaOld;
  1193. return $this;
  1194. }
  1195. /**
  1196. * @return null
  1197. */
  1198. public function getIdentityUpTime()
  1199. {
  1200. return $this->identityUpTime;
  1201. }
  1202. /**
  1203. * @param null $identityUpTime
  1204. * @return UserEntity
  1205. */
  1206. public function setIdentityUpTime($identityUpTime)
  1207. {
  1208. $this->identityUpTime = $identityUpTime;
  1209. return $this;
  1210. }
  1211. }