UserEntity.php 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965
  1. <?php
  2. namespace app\entity\data\user;
  3. use app\entity\data\DataEntity;
  4. class UserEntity extends DataEntity
  5. {
  6. public $uid = null; // 用户id
  7. public $wechatUserId = null; // 微信用户 id
  8. public $aliUserId = null; // 支付宝用户id
  9. public $account = null; // 用户账号
  10. public $pwd = null; // 用户密码
  11. public $realName = null; // 真实姓名
  12. public $spreadUid = null; // 推广员id
  13. public $sex = null; // 性别
  14. public $birthday = null; // 生日
  15. public $cardId = null; // 身份证号码
  16. public $mark = null; // 用户备注
  17. public $labelId = null; // 用户标签 id
  18. public $groupId = null; // 用户分组id
  19. public $nickname = null; // 用户昵称
  20. public $avatar = null; // 用户头像
  21. public $phone = null; // 手机号码
  22. public $addres = null; // 地址
  23. public $createTime = null; // 添加时间
  24. public $lastTime = null; // 最后一次登录时间
  25. public $lastIp = null; // 最后一次登录ip
  26. public $score = null; // 积分(20220712改版新增)
  27. public $nowMoney = null; // 用户余额
  28. public $brokeragePrice = null; // 佣金金额
  29. public $repurchasePrice = null; // 复购余额
  30. public $memberBrokeragePrice = null; // 会员商品直推佣金
  31. public $status = null; // 1为正常,0为禁止
  32. public $spreadTime = null; // 推广员关联时间
  33. public $userType = null; // 用户类型
  34. public $promoterTime = null; // 成功推广时间
  35. public $nowScore = null; // 用户积分
  36. public $isPromoter = null; // 是否为推广员
  37. public $mainUid = null; // 主账号
  38. public $payCount = null; // 用户购买次数
  39. public $payPrice = null; // 用户消费金额
  40. public $spreadCount = null; // 下级人数
  41. public $adrId = null; // 身份所对应的区域id
  42. public $identity = null; // 1 镇代 2 县代 3 市代 4 商户 5 推广员 6渠道商
  43. public $merId = null; // 首次消费绑定商户
  44. public $merTopping = null; // 置顶商户
  45. public $userName = null;
  46. public $annuityFrozen = null; // 养老金 冻结
  47. public $annuityNum = null; // 几笔养老金
  48. public $annuity = null; // 养老金
  49. public $agentRebate = null; // 推荐推广员返利
  50. public $merRebate = null; // 推荐商户返利
  51. public $promoterRebate = null; // 推荐代理返利
  52. public $crossStore = null; // 跨店收入
  53. public $jurisdiction = null; // 辖区内收入
  54. public $otherJurisdictions = null; // 跨区收入
  55. public $advFee = null; // 广告费
  56. public $xqxiaofei = null; // 自己辖区消费返利
  57. public $birthday60 = null; // 60岁生日
  58. public $cardNumber = null; // 卡号 养老金
  59. public $annuityYiqu = null; // 已支取
  60. public $isNew = null; // 是否为新用户:0=>是,1=>不是
  61. public $adminAgentRate = null; // 平台收入
  62. public $locktime = null; // 会员锁定时间
  63. public $userNumber = null; // 用户编号
  64. public $im = null; // 环信账号。0:未注册。1:已注册。
  65. public $imUuid = null; // 环信UUID
  66. public $imUserid = null; // 环信username
  67. public $imPassword = null; // 环信password
  68. public $testUser = null; // 是否是测试用户
  69. public $isChannel = null; // 是否是渠道商
  70. public $annuityOnce = null; // 0-未结算过养老金,1-已结算过养老金
  71. public $firstSign = null; // 首次签到:0-未签到。1-已签到。2-首次签到断签。3-首次签到30天
  72. public $isDel = null; // 0未删除1删除
  73. public $firstShopping = null; // 首次消费0-未消费,1-已消费
  74. public $external = null; // 用户来源1:储蓄保,2:长寿美,3:聚宝盆1.0
  75. public $externalId = null; // 外部用户ID
  76. public $scoreBeishengtang = null; // 北参堂积分
  77. public $levelId = null;
  78. public $level = null;
  79. public $isShow = null; // 用户来源1 系统注册 2 集团导入商户 3 激活码激活商户
  80. public $userGroup = null; // 1消费者 2,推广业务员 3,业务经理 4初级合伙人5中级合伙人 6高级合伙人 7.懂事
  81. public $upVipTime = null; // 升级大v时间
  82. public $upAgencyTime = null; // 升级代理时间
  83. public $manageAddress = null; // 管理区域id串
  84. public $isShopPartner = null; // 是否是创客合伙人
  85. public $contribute = null; // 贡献值
  86. public $jingdou = null; // 金豆
  87. public $vr = null; // 购物金
  88. public $pv = null; // pv值
  89. public $hongbao = null; // 红包奖励,只有在会员系统的用户才有此奖励
  90. public $oldVipLimit = null; // 老会员购买产品的额度
  91. public $isOld = null; // 是否为1.0老系统用户,0为新系统,1为1.0老会员系统
  92. public $fugou = null; // 复购金
  93. public $jbpIdOld = null; // 父级id集合_id(聚保盆id)
  94. public $unameOld = null; // 聚保盆1.0_用户名
  95. public $amountOld = null; // 聚保盆1.0_个人佣金
  96. public $spreadOld = null; // 聚保盆1.0_上级
  97. public $inviteIdOd = null; // 聚保盆1.0_上级ID(jbp_id)
  98. public $isTeamOld = null; // 聚保盆1.0_是否时间共建联盟(0:否,1:是)
  99. public $serverIdOld = null; // 聚保盆1.0_服务中心
  100. public $parentIdsOld = null; // 聚保盆1.0_父级id集合
  101. public $userLevelIdOld = null; // 聚保盆1.0_权益等级
  102. public $originatorIdOld = null; // 聚保盆1.0_对应的联创等级
  103. public $totalAmountOld = null; // 累计佣金
  104. public $totalWithdrawQuotaOld = null;
  105. public $tobeAmountOld = null; // 冻结佣金
  106. public $perContribute = null; // 个人贡献值中的直推贡献值(用于计算业务经理之前的身份升级)
  107. public $withdrawQuotaOld = null; // 提现额度
  108. public $identityUpTime = null; // 身份升级成业务员的时间
  109. /**
  110. * @return mixed
  111. */
  112. public function getUid()
  113. {
  114. return $this->uid;
  115. }
  116. /**
  117. * @param mixed $uid
  118. * @return UserEntity
  119. */
  120. public function setUid($uid): UserEntity
  121. {
  122. $this->uid = $uid;
  123. return $this;
  124. }
  125. /**
  126. * @return mixed
  127. */
  128. public function getWechatUserId()
  129. {
  130. return $this->wechatUserId;
  131. }
  132. /**
  133. * @param mixed $wechatUserId
  134. * @return UserEntity
  135. */
  136. public function setWechatUserId($wechatUserId): UserEntity
  137. {
  138. $this->wechatUserId = $wechatUserId;
  139. return $this;
  140. }
  141. /**
  142. * @return mixed
  143. */
  144. public function getAliUserId()
  145. {
  146. return $this->aliUserId;
  147. }
  148. /**
  149. * @param mixed $aliUserId
  150. * @return UserEntity
  151. */
  152. public function setAliUserId($aliUserId): UserEntity
  153. {
  154. $this->aliUserId = $aliUserId;
  155. return $this;
  156. }
  157. /**
  158. * @return mixed
  159. */
  160. public function getAccount()
  161. {
  162. return $this->account;
  163. }
  164. /**
  165. * @param mixed $account
  166. * @return UserEntity
  167. */
  168. public function setAccount($account): UserEntity
  169. {
  170. $this->account = $account;
  171. return $this;
  172. }
  173. /**
  174. * @return mixed
  175. */
  176. public function getPwd()
  177. {
  178. return $this->pwd;
  179. }
  180. /**
  181. * @param mixed $pwd
  182. * @return UserEntity
  183. */
  184. public function setPwd($pwd): UserEntity
  185. {
  186. $this->pwd = $pwd;
  187. return $this;
  188. }
  189. /**
  190. * @return mixed
  191. */
  192. public function getRealName()
  193. {
  194. return $this->realName;
  195. }
  196. /**
  197. * @param mixed $realName
  198. * @return UserEntity
  199. */
  200. public function setRealName($realName): UserEntity
  201. {
  202. $this->realName = $realName;
  203. return $this;
  204. }
  205. /**
  206. * @return mixed
  207. */
  208. public function getSpreadUid()
  209. {
  210. return $this->spreadUid;
  211. }
  212. /**
  213. * @param mixed $spreadUid
  214. * @return UserEntity
  215. */
  216. public function setSpreadUid($spreadUid): UserEntity
  217. {
  218. $this->spreadUid = $spreadUid;
  219. return $this;
  220. }
  221. /**
  222. * @return mixed
  223. */
  224. public function getSex()
  225. {
  226. return $this->sex;
  227. }
  228. /**
  229. * @param mixed $sex
  230. * @return UserEntity
  231. */
  232. public function setSex($sex): UserEntity
  233. {
  234. $this->sex = $sex;
  235. return $this;
  236. }
  237. /**
  238. * @return mixed
  239. */
  240. public function getBirthday()
  241. {
  242. return $this->birthday;
  243. }
  244. /**
  245. * @param mixed $birthday
  246. * @return UserEntity
  247. */
  248. public function setBirthday($birthday): UserEntity
  249. {
  250. $this->birthday = $birthday;
  251. return $this;
  252. }
  253. /**
  254. * @return mixed
  255. */
  256. public function getCardId()
  257. {
  258. return $this->cardId;
  259. }
  260. /**
  261. * @param mixed $cardId
  262. * @return UserEntity
  263. */
  264. public function setCardId($cardId): UserEntity
  265. {
  266. $this->cardId = $cardId;
  267. return $this;
  268. }
  269. /**
  270. * @return mixed
  271. */
  272. public function getMark()
  273. {
  274. return $this->mark;
  275. }
  276. /**
  277. * @param mixed $mark
  278. * @return UserEntity
  279. */
  280. public function setMark($mark): UserEntity
  281. {
  282. $this->mark = $mark;
  283. return $this;
  284. }
  285. /**
  286. * @return mixed
  287. */
  288. public function getLabelId()
  289. {
  290. return $this->labelId;
  291. }
  292. /**
  293. * @param mixed $labelId
  294. * @return UserEntity
  295. */
  296. public function setLabelId($labelId): UserEntity
  297. {
  298. $this->labelId = $labelId;
  299. return $this;
  300. }
  301. /**
  302. * @return mixed
  303. */
  304. public function getGroupId()
  305. {
  306. return $this->groupId;
  307. }
  308. /**
  309. * @param mixed $groupId
  310. * @return UserEntity
  311. */
  312. public function setGroupId($groupId): UserEntity
  313. {
  314. $this->groupId = $groupId;
  315. return $this;
  316. }
  317. /**
  318. * @return mixed
  319. */
  320. public function getNickname()
  321. {
  322. return $this->nickname;
  323. }
  324. /**
  325. * @param mixed $nickname
  326. * @return UserEntity
  327. */
  328. public function setNickname($nickname): UserEntity
  329. {
  330. $this->nickname = $nickname;
  331. return $this;
  332. }
  333. /**
  334. * @return mixed
  335. */
  336. public function getAvatar()
  337. {
  338. return $this->avatar;
  339. }
  340. /**
  341. * @param mixed $avatar
  342. * @return UserEntity
  343. */
  344. public function setAvatar($avatar): UserEntity
  345. {
  346. $this->avatar = $avatar;
  347. return $this;
  348. }
  349. /**
  350. * @return mixed
  351. */
  352. public function getPhone()
  353. {
  354. return $this->phone;
  355. }
  356. /**
  357. * @param mixed $phone
  358. * @return UserEntity
  359. */
  360. public function setPhone($phone): UserEntity
  361. {
  362. $this->phone = $phone;
  363. return $this;
  364. }
  365. /**
  366. * @return mixed
  367. */
  368. public function getAddres()
  369. {
  370. return $this->addres;
  371. }
  372. /**
  373. * @param mixed $addres
  374. * @return UserEntity
  375. */
  376. public function setAddres($addres): UserEntity
  377. {
  378. $this->addres = $addres;
  379. return $this;
  380. }
  381. /**
  382. * @return mixed
  383. */
  384. public function getCreateTime()
  385. {
  386. return $this->createTime;
  387. }
  388. /**
  389. * @param mixed $createTime
  390. * @return UserEntity
  391. */
  392. public function setCreateTime($createTime): UserEntity
  393. {
  394. $this->createTime = $createTime;
  395. return $this;
  396. }
  397. /**
  398. * @return mixed
  399. */
  400. public function getLastTime()
  401. {
  402. return $this->lastTime;
  403. }
  404. /**
  405. * @param mixed $lastTime
  406. * @return UserEntity
  407. */
  408. public function setLastTime($lastTime): UserEntity
  409. {
  410. $this->lastTime = $lastTime;
  411. return $this;
  412. }
  413. /**
  414. * @return mixed
  415. */
  416. public function getLastIp()
  417. {
  418. return $this->lastIp;
  419. }
  420. /**
  421. * @param mixed $lastIp
  422. * @return UserEntity
  423. */
  424. public function setLastIp($lastIp): UserEntity
  425. {
  426. $this->lastIp = $lastIp;
  427. return $this;
  428. }
  429. /**
  430. * @return mixed
  431. */
  432. public function getScore()
  433. {
  434. return $this->score;
  435. }
  436. /**
  437. * @param mixed $score
  438. * @return UserEntity
  439. */
  440. public function setScore($score): UserEntity
  441. {
  442. $this->score = $score;
  443. return $this;
  444. }
  445. /**
  446. * @return mixed
  447. */
  448. public function getNowMoney()
  449. {
  450. return $this->nowMoney;
  451. }
  452. /**
  453. * @param mixed $nowMoney
  454. * @return UserEntity
  455. */
  456. public function setNowMoney($nowMoney): UserEntity
  457. {
  458. $this->nowMoney = $nowMoney;
  459. return $this;
  460. }
  461. /**
  462. * @return mixed
  463. */
  464. public function getBrokeragePrice()
  465. {
  466. return $this->brokeragePrice;
  467. }
  468. /**
  469. * @param mixed $brokeragePrice
  470. * @return UserEntity
  471. */
  472. public function setBrokeragePrice($brokeragePrice): UserEntity
  473. {
  474. $this->brokeragePrice = $brokeragePrice;
  475. return $this;
  476. }
  477. /**
  478. * @return mixed
  479. */
  480. public function getRepurchasePrice()
  481. {
  482. return $this->repurchasePrice;
  483. }
  484. /**
  485. * @param mixed $repurchasePrice
  486. * @return UserEntity
  487. */
  488. public function setRepurchasePrice($repurchasePrice): UserEntity
  489. {
  490. $this->repurchasePrice = $repurchasePrice;
  491. return $this;
  492. }
  493. /**
  494. * @return mixed
  495. */
  496. public function getMemberBrokeragePrice()
  497. {
  498. return $this->memberBrokeragePrice;
  499. }
  500. /**
  501. * @param mixed $memberBrokeragePrice
  502. * @return UserEntity
  503. */
  504. public function setMemberBrokeragePrice($memberBrokeragePrice): UserEntity
  505. {
  506. $this->memberBrokeragePrice = $memberBrokeragePrice;
  507. return $this;
  508. }
  509. /**
  510. * @return mixed
  511. */
  512. public function getStatus()
  513. {
  514. return $this->status;
  515. }
  516. /**
  517. * @param mixed $status
  518. * @return UserEntity
  519. */
  520. public function setStatus($status): UserEntity
  521. {
  522. $this->status = $status;
  523. return $this;
  524. }
  525. /**
  526. * @return mixed
  527. */
  528. public function getSpreadTime()
  529. {
  530. return $this->spreadTime;
  531. }
  532. /**
  533. * @param mixed $spreadTime
  534. * @return UserEntity
  535. */
  536. public function setSpreadTime($spreadTime): UserEntity
  537. {
  538. $this->spreadTime = $spreadTime;
  539. return $this;
  540. }
  541. /**
  542. * @return mixed
  543. */
  544. public function getUserType()
  545. {
  546. return $this->userType;
  547. }
  548. /**
  549. * @param mixed $userType
  550. * @return UserEntity
  551. */
  552. public function setUserType($userType): UserEntity
  553. {
  554. $this->userType = $userType;
  555. return $this;
  556. }
  557. /**
  558. * @return mixed
  559. */
  560. public function getPromoterTime()
  561. {
  562. return $this->promoterTime;
  563. }
  564. /**
  565. * @param mixed $promoterTime
  566. * @return UserEntity
  567. */
  568. public function setPromoterTime($promoterTime): UserEntity
  569. {
  570. $this->promoterTime = $promoterTime;
  571. return $this;
  572. }
  573. /**
  574. * @return mixed
  575. */
  576. public function getNowScore()
  577. {
  578. return $this->nowScore;
  579. }
  580. /**
  581. * @param mixed $nowScore
  582. * @return UserEntity
  583. */
  584. public function setNowScore($nowScore): UserEntity
  585. {
  586. $this->nowScore = $nowScore;
  587. return $this;
  588. }
  589. /**
  590. * @return mixed
  591. */
  592. public function getIsPromoter()
  593. {
  594. return $this->isPromoter;
  595. }
  596. /**
  597. * @param mixed $isPromoter
  598. * @return UserEntity
  599. */
  600. public function setIsPromoter($isPromoter): UserEntity
  601. {
  602. $this->isPromoter = $isPromoter;
  603. return $this;
  604. }
  605. /**
  606. * @return mixed
  607. */
  608. public function getMainUid()
  609. {
  610. return $this->mainUid;
  611. }
  612. /**
  613. * @param mixed $mainUid
  614. * @return UserEntity
  615. */
  616. public function setMainUid($mainUid): UserEntity
  617. {
  618. $this->mainUid = $mainUid;
  619. return $this;
  620. }
  621. /**
  622. * @return mixed
  623. */
  624. public function getPayCount()
  625. {
  626. return $this->payCount;
  627. }
  628. /**
  629. * @param mixed $payCount
  630. * @return UserEntity
  631. */
  632. public function setPayCount($payCount): UserEntity
  633. {
  634. $this->payCount = $payCount;
  635. return $this;
  636. }
  637. /**
  638. * @return mixed
  639. */
  640. public function getPayPrice()
  641. {
  642. return $this->payPrice;
  643. }
  644. /**
  645. * @param mixed $payPrice
  646. * @return UserEntity
  647. */
  648. public function setPayPrice($payPrice): UserEntity
  649. {
  650. $this->payPrice = $payPrice;
  651. return $this;
  652. }
  653. /**
  654. * @return mixed
  655. */
  656. public function getSpreadCount()
  657. {
  658. return $this->spreadCount;
  659. }
  660. /**
  661. * @param mixed $spreadCount
  662. * @return UserEntity
  663. */
  664. public function setSpreadCount($spreadCount): UserEntity
  665. {
  666. $this->spreadCount = $spreadCount;
  667. return $this;
  668. }
  669. /**
  670. * @return mixed
  671. */
  672. public function getAdrId()
  673. {
  674. return $this->adrId;
  675. }
  676. /**
  677. * @param mixed $adrId
  678. * @return UserEntity
  679. */
  680. public function setAdrId($adrId): UserEntity
  681. {
  682. $this->adrId = $adrId;
  683. return $this;
  684. }
  685. /**
  686. * @return mixed
  687. */
  688. public function getIdentity()
  689. {
  690. return $this->identity;
  691. }
  692. /**
  693. * @param mixed $identity
  694. * @return UserEntity
  695. */
  696. public function setIdentity($identity): UserEntity
  697. {
  698. $this->identity = $identity;
  699. return $this;
  700. }
  701. /**
  702. * @return mixed
  703. */
  704. public function getMerId()
  705. {
  706. return $this->merId;
  707. }
  708. /**
  709. * @param mixed $merId
  710. * @return UserEntity
  711. */
  712. public function setMerId($merId): UserEntity
  713. {
  714. $this->merId = $merId;
  715. return $this;
  716. }
  717. /**
  718. * @return mixed
  719. */
  720. public function getMerTopping()
  721. {
  722. return $this->merTopping;
  723. }
  724. /**
  725. * @param mixed $merTopping
  726. * @return UserEntity
  727. */
  728. public function setMerTopping($merTopping): UserEntity
  729. {
  730. $this->merTopping = $merTopping;
  731. return $this;
  732. }
  733. /**
  734. * @return mixed
  735. */
  736. public function getUserName()
  737. {
  738. return $this->userName;
  739. }
  740. /**
  741. * @param mixed $userName
  742. * @return UserEntity
  743. */
  744. public function setUserName($userName): UserEntity
  745. {
  746. $this->userName = $userName;
  747. return $this;
  748. }
  749. /**
  750. * @return mixed
  751. */
  752. public function getAnnuityFrozen()
  753. {
  754. return $this->annuityFrozen;
  755. }
  756. /**
  757. * @param mixed $annuityFrozen
  758. * @return UserEntity
  759. */
  760. public function setAnnuityFrozen($annuityFrozen): UserEntity
  761. {
  762. $this->annuityFrozen = $annuityFrozen;
  763. return $this;
  764. }
  765. /**
  766. * @return mixed
  767. */
  768. public function getAnnuityNum()
  769. {
  770. return $this->annuityNum;
  771. }
  772. /**
  773. * @param mixed $annuityNum
  774. * @return UserEntity
  775. */
  776. public function setAnnuityNum($annuityNum): UserEntity
  777. {
  778. $this->annuityNum = $annuityNum;
  779. return $this;
  780. }
  781. /**
  782. * @return mixed
  783. */
  784. public function getAnnuity()
  785. {
  786. return $this->annuity;
  787. }
  788. /**
  789. * @param mixed $annuity
  790. * @return UserEntity
  791. */
  792. public function setAnnuity($annuity): UserEntity
  793. {
  794. $this->annuity = $annuity;
  795. return $this;
  796. }
  797. /**
  798. * @return mixed
  799. */
  800. public function getAgentRebate()
  801. {
  802. return $this->agentRebate;
  803. }
  804. /**
  805. * @param mixed $agentRebate
  806. * @return UserEntity
  807. */
  808. public function setAgentRebate($agentRebate): UserEntity
  809. {
  810. $this->agentRebate = $agentRebate;
  811. return $this;
  812. }
  813. /**
  814. * @return mixed
  815. */
  816. public function getMerRebate()
  817. {
  818. return $this->merRebate;
  819. }
  820. /**
  821. * @param mixed $merRebate
  822. * @return UserEntity
  823. */
  824. public function setMerRebate($merRebate): UserEntity
  825. {
  826. $this->merRebate = $merRebate;
  827. return $this;
  828. }
  829. /**
  830. * @return mixed
  831. */
  832. public function getPromoterRebate()
  833. {
  834. return $this->promoterRebate;
  835. }
  836. /**
  837. * @param mixed $promoterRebate
  838. * @return UserEntity
  839. */
  840. public function setPromoterRebate($promoterRebate): UserEntity
  841. {
  842. $this->promoterRebate = $promoterRebate;
  843. return $this;
  844. }
  845. /**
  846. * @return mixed
  847. */
  848. public function getCrossStore()
  849. {
  850. return $this->crossStore;
  851. }
  852. /**
  853. * @param mixed $crossStore
  854. * @return UserEntity
  855. */
  856. public function setCrossStore($crossStore): UserEntity
  857. {
  858. $this->crossStore = $crossStore;
  859. return $this;
  860. }
  861. /**
  862. * @return mixed
  863. */
  864. public function getJurisdiction()
  865. {
  866. return $this->jurisdiction;
  867. }
  868. /**
  869. * @param mixed $jurisdiction
  870. * @return UserEntity
  871. */
  872. public function setJurisdiction($jurisdiction): UserEntity
  873. {
  874. $this->jurisdiction = $jurisdiction;
  875. return $this;
  876. }
  877. /**
  878. * @return mixed
  879. */
  880. public function getOtherJurisdictions()
  881. {
  882. return $this->otherJurisdictions;
  883. }
  884. /**
  885. * @param mixed $otherJurisdictions
  886. * @return UserEntity
  887. */
  888. public function setOtherJurisdictions($otherJurisdictions): UserEntity
  889. {
  890. $this->otherJurisdictions = $otherJurisdictions;
  891. return $this;
  892. }
  893. /**
  894. * @return mixed
  895. */
  896. public function getAdvFee()
  897. {
  898. return $this->advFee;
  899. }
  900. /**
  901. * @param mixed $advFee
  902. * @return UserEntity
  903. */
  904. public function setAdvFee($advFee): UserEntity
  905. {
  906. $this->advFee = $advFee;
  907. return $this;
  908. }
  909. /**
  910. * @return mixed
  911. */
  912. public function getXqxiaofei()
  913. {
  914. return $this->xqxiaofei;
  915. }
  916. /**
  917. * @param mixed $xqxiaofei
  918. * @return UserEntity
  919. */
  920. public function setXqxiaofei($xqxiaofei): UserEntity
  921. {
  922. $this->xqxiaofei = $xqxiaofei;
  923. return $this;
  924. }
  925. /**
  926. * @return mixed
  927. */
  928. public function getBirthday60()
  929. {
  930. return $this->birthday60;
  931. }
  932. /**
  933. * @param mixed $birthday60
  934. * @return UserEntity
  935. */
  936. public function setBirthday60($birthday60): UserEntity
  937. {
  938. $this->birthday60 = $birthday60;
  939. return $this;
  940. }
  941. /**
  942. * @return mixed
  943. */
  944. public function getCardNumber()
  945. {
  946. return $this->cardNumber;
  947. }
  948. /**
  949. * @param mixed $cardNumber
  950. * @return UserEntity
  951. */
  952. public function setCardNumber($cardNumber): UserEntity
  953. {
  954. $this->cardNumber = $cardNumber;
  955. return $this;
  956. }
  957. /**
  958. * @return mixed
  959. */
  960. public function getAnnuityYiqu()
  961. {
  962. return $this->annuityYiqu;
  963. }
  964. /**
  965. * @param mixed $annuityYiqu
  966. * @return UserEntity
  967. */
  968. public function setAnnuityYiqu($annuityYiqu): UserEntity
  969. {
  970. $this->annuityYiqu = $annuityYiqu;
  971. return $this;
  972. }
  973. /**
  974. * @return mixed
  975. */
  976. public function getIsNew()
  977. {
  978. return $this->isNew;
  979. }
  980. /**
  981. * @param mixed $isNew
  982. * @return UserEntity
  983. */
  984. public function setIsNew($isNew): UserEntity
  985. {
  986. $this->isNew = $isNew;
  987. return $this;
  988. }
  989. /**
  990. * @return mixed
  991. */
  992. public function getAdminAgentRate()
  993. {
  994. return $this->adminAgentRate;
  995. }
  996. /**
  997. * @param mixed $adminAgentRate
  998. * @return UserEntity
  999. */
  1000. public function setAdminAgentRate($adminAgentRate): UserEntity
  1001. {
  1002. $this->adminAgentRate = $adminAgentRate;
  1003. return $this;
  1004. }
  1005. /**
  1006. * @return mixed
  1007. */
  1008. public function getLocktime()
  1009. {
  1010. return $this->locktime;
  1011. }
  1012. /**
  1013. * @param mixed $locktime
  1014. * @return UserEntity
  1015. */
  1016. public function setLocktime($locktime): UserEntity
  1017. {
  1018. $this->locktime = $locktime;
  1019. return $this;
  1020. }
  1021. /**
  1022. * @return mixed
  1023. */
  1024. public function getUserNumber()
  1025. {
  1026. return $this->userNumber;
  1027. }
  1028. /**
  1029. * @param mixed $userNumber
  1030. * @return UserEntity
  1031. */
  1032. public function setUserNumber($userNumber): UserEntity
  1033. {
  1034. $this->userNumber = $userNumber;
  1035. return $this;
  1036. }
  1037. /**
  1038. * @return mixed
  1039. */
  1040. public function getIm()
  1041. {
  1042. return $this->im;
  1043. }
  1044. /**
  1045. * @param mixed $im
  1046. * @return UserEntity
  1047. */
  1048. public function setIm($im): UserEntity
  1049. {
  1050. $this->im = $im;
  1051. return $this;
  1052. }
  1053. /**
  1054. * @return mixed
  1055. */
  1056. public function getImUuid()
  1057. {
  1058. return $this->imUuid;
  1059. }
  1060. /**
  1061. * @param mixed $imUuid
  1062. * @return UserEntity
  1063. */
  1064. public function setImUuid($imUuid): UserEntity
  1065. {
  1066. $this->imUuid = $imUuid;
  1067. return $this;
  1068. }
  1069. /**
  1070. * @return mixed
  1071. */
  1072. public function getImUserid()
  1073. {
  1074. return $this->imUserid;
  1075. }
  1076. /**
  1077. * @param mixed $imUserid
  1078. * @return UserEntity
  1079. */
  1080. public function setImUserid($imUserid): UserEntity
  1081. {
  1082. $this->imUserid = $imUserid;
  1083. return $this;
  1084. }
  1085. /**
  1086. * @return mixed
  1087. */
  1088. public function getImPassword()
  1089. {
  1090. return $this->imPassword;
  1091. }
  1092. /**
  1093. * @param mixed $imPassword
  1094. * @return UserEntity
  1095. */
  1096. public function setImPassword($imPassword): UserEntity
  1097. {
  1098. $this->imPassword = $imPassword;
  1099. return $this;
  1100. }
  1101. /**
  1102. * @return mixed
  1103. */
  1104. public function getTestUser()
  1105. {
  1106. return $this->testUser;
  1107. }
  1108. /**
  1109. * @param mixed $testUser
  1110. * @return UserEntity
  1111. */
  1112. public function setTestUser($testUser): UserEntity
  1113. {
  1114. $this->testUser = $testUser;
  1115. return $this;
  1116. }
  1117. /**
  1118. * @return mixed
  1119. */
  1120. public function getIsChannel()
  1121. {
  1122. return $this->isChannel;
  1123. }
  1124. /**
  1125. * @param mixed $isChannel
  1126. * @return UserEntity
  1127. */
  1128. public function setIsChannel($isChannel): UserEntity
  1129. {
  1130. $this->isChannel = $isChannel;
  1131. return $this;
  1132. }
  1133. /**
  1134. * @return mixed
  1135. */
  1136. public function getAnnuityOnce()
  1137. {
  1138. return $this->annuityOnce;
  1139. }
  1140. /**
  1141. * @param mixed $annuityOnce
  1142. * @return UserEntity
  1143. */
  1144. public function setAnnuityOnce($annuityOnce): UserEntity
  1145. {
  1146. $this->annuityOnce = $annuityOnce;
  1147. return $this;
  1148. }
  1149. /**
  1150. * @return mixed
  1151. */
  1152. public function getFirstSign()
  1153. {
  1154. return $this->firstSign;
  1155. }
  1156. /**
  1157. * @param mixed $firstSign
  1158. * @return UserEntity
  1159. */
  1160. public function setFirstSign($firstSign): UserEntity
  1161. {
  1162. $this->firstSign = $firstSign;
  1163. return $this;
  1164. }
  1165. /**
  1166. * @return mixed
  1167. */
  1168. public function getIsDel()
  1169. {
  1170. return $this->isDel;
  1171. }
  1172. /**
  1173. * @param mixed $isDel
  1174. * @return UserEntity
  1175. */
  1176. public function setIsDel($isDel): UserEntity
  1177. {
  1178. $this->isDel = $isDel;
  1179. return $this;
  1180. }
  1181. /**
  1182. * @return mixed
  1183. */
  1184. public function getFirstShopping()
  1185. {
  1186. return $this->firstShopping;
  1187. }
  1188. /**
  1189. * @param mixed $firstShopping
  1190. * @return UserEntity
  1191. */
  1192. public function setFirstShopping($firstShopping): UserEntity
  1193. {
  1194. $this->firstShopping = $firstShopping;
  1195. return $this;
  1196. }
  1197. /**
  1198. * @return mixed
  1199. */
  1200. public function getExternal()
  1201. {
  1202. return $this->external;
  1203. }
  1204. /**
  1205. * @param mixed $external
  1206. * @return UserEntity
  1207. */
  1208. public function setExternal($external): UserEntity
  1209. {
  1210. $this->external = $external;
  1211. return $this;
  1212. }
  1213. /**
  1214. * @return mixed
  1215. */
  1216. public function getExternalId()
  1217. {
  1218. return $this->externalId;
  1219. }
  1220. /**
  1221. * @param mixed $externalId
  1222. * @return UserEntity
  1223. */
  1224. public function setExternalId($externalId): UserEntity
  1225. {
  1226. $this->externalId = $externalId;
  1227. return $this;
  1228. }
  1229. /**
  1230. * @return mixed
  1231. */
  1232. public function getScoreBeishengtang()
  1233. {
  1234. return $this->scoreBeishengtang;
  1235. }
  1236. /**
  1237. * @param mixed $scoreBeishengtang
  1238. * @return UserEntity
  1239. */
  1240. public function setScoreBeishengtang($scoreBeishengtang): UserEntity
  1241. {
  1242. $this->scoreBeishengtang = $scoreBeishengtang;
  1243. return $this;
  1244. }
  1245. /**
  1246. * @return mixed
  1247. */
  1248. public function getLevelId()
  1249. {
  1250. return $this->levelId;
  1251. }
  1252. /**
  1253. * @param mixed $levelId
  1254. * @return UserEntity
  1255. */
  1256. public function setLevelId($levelId): UserEntity
  1257. {
  1258. $this->levelId = $levelId;
  1259. return $this;
  1260. }
  1261. /**
  1262. * @return mixed
  1263. */
  1264. public function getLevel()
  1265. {
  1266. return $this->level;
  1267. }
  1268. /**
  1269. * @param mixed $level
  1270. * @return UserEntity
  1271. */
  1272. public function setLevel($level): UserEntity
  1273. {
  1274. $this->level = $level;
  1275. return $this;
  1276. }
  1277. /**
  1278. * @return mixed
  1279. */
  1280. public function getIsShow()
  1281. {
  1282. return $this->isShow;
  1283. }
  1284. /**
  1285. * @param mixed $isShow
  1286. * @return UserEntity
  1287. */
  1288. public function setIsShow($isShow): UserEntity
  1289. {
  1290. $this->isShow = $isShow;
  1291. return $this;
  1292. }
  1293. /**
  1294. * @return mixed
  1295. */
  1296. public function getUserGroup()
  1297. {
  1298. return $this->userGroup;
  1299. }
  1300. /**
  1301. * @param mixed $userGroup
  1302. * @return UserEntity
  1303. */
  1304. public function setUserGroup($userGroup): UserEntity
  1305. {
  1306. $this->userGroup = $userGroup;
  1307. return $this;
  1308. }
  1309. /**
  1310. * @return mixed
  1311. */
  1312. public function getUpVipTime()
  1313. {
  1314. return $this->upVipTime;
  1315. }
  1316. /**
  1317. * @param mixed $upVipTime
  1318. * @return UserEntity
  1319. */
  1320. public function setUpVipTime($upVipTime): UserEntity
  1321. {
  1322. $this->upVipTime = $upVipTime;
  1323. return $this;
  1324. }
  1325. /**
  1326. * @return mixed
  1327. */
  1328. public function getUpAgencyTime()
  1329. {
  1330. return $this->upAgencyTime;
  1331. }
  1332. /**
  1333. * @param mixed $upAgencyTime
  1334. * @return UserEntity
  1335. */
  1336. public function setUpAgencyTime($upAgencyTime): UserEntity
  1337. {
  1338. $this->upAgencyTime = $upAgencyTime;
  1339. return $this;
  1340. }
  1341. /**
  1342. * @return mixed
  1343. */
  1344. public function getManageAddress()
  1345. {
  1346. return $this->manageAddress;
  1347. }
  1348. /**
  1349. * @param mixed $manageAddress
  1350. * @return UserEntity
  1351. */
  1352. public function setManageAddress($manageAddress): UserEntity
  1353. {
  1354. $this->manageAddress = $manageAddress;
  1355. return $this;
  1356. }
  1357. /**
  1358. * @return mixed
  1359. */
  1360. public function getIsShopPartner()
  1361. {
  1362. return $this->isShopPartner;
  1363. }
  1364. /**
  1365. * @param mixed $isShopPartner
  1366. * @return UserEntity
  1367. */
  1368. public function setIsShopPartner($isShopPartner): UserEntity
  1369. {
  1370. $this->isShopPartner = $isShopPartner;
  1371. return $this;
  1372. }
  1373. /**
  1374. * @return mixed
  1375. */
  1376. public function getContribute()
  1377. {
  1378. return $this->contribute;
  1379. }
  1380. /**
  1381. * @param mixed $contribute
  1382. * @return UserEntity
  1383. */
  1384. public function setContribute($contribute): UserEntity
  1385. {
  1386. $this->contribute = $contribute;
  1387. return $this;
  1388. }
  1389. /**
  1390. * @return mixed
  1391. */
  1392. public function getJingdou()
  1393. {
  1394. return $this->jingdou;
  1395. }
  1396. /**
  1397. * @param mixed $jingdou
  1398. * @return UserEntity
  1399. */
  1400. public function setJingdou($jingdou): UserEntity
  1401. {
  1402. $this->jingdou = $jingdou;
  1403. return $this;
  1404. }
  1405. /**
  1406. * @return mixed
  1407. */
  1408. public function getVr()
  1409. {
  1410. return $this->vr;
  1411. }
  1412. /**
  1413. * @param mixed $vr
  1414. * @return UserEntity
  1415. */
  1416. public function setVr($vr): UserEntity
  1417. {
  1418. $this->vr = $vr;
  1419. return $this;
  1420. }
  1421. /**
  1422. * @return mixed
  1423. */
  1424. public function getPv()
  1425. {
  1426. return $this->pv;
  1427. }
  1428. /**
  1429. * @param mixed $pv
  1430. * @return UserEntity
  1431. */
  1432. public function setPv($pv): UserEntity
  1433. {
  1434. $this->pv = $pv;
  1435. return $this;
  1436. }
  1437. /**
  1438. * @return mixed
  1439. */
  1440. public function getHongbao()
  1441. {
  1442. return $this->hongbao;
  1443. }
  1444. /**
  1445. * @param mixed $hongbao
  1446. * @return UserEntity
  1447. */
  1448. public function setHongbao($hongbao): UserEntity
  1449. {
  1450. $this->hongbao = $hongbao;
  1451. return $this;
  1452. }
  1453. /**
  1454. * @return mixed
  1455. */
  1456. public function getOldVipLimit()
  1457. {
  1458. return $this->oldVipLimit;
  1459. }
  1460. /**
  1461. * @param mixed $oldVipLimit
  1462. * @return UserEntity
  1463. */
  1464. public function setOldVipLimit($oldVipLimit): UserEntity
  1465. {
  1466. $this->oldVipLimit = $oldVipLimit;
  1467. return $this;
  1468. }
  1469. /**
  1470. * @return mixed
  1471. */
  1472. public function getIsOld()
  1473. {
  1474. return $this->isOld;
  1475. }
  1476. /**
  1477. * @param mixed $isOld
  1478. * @return UserEntity
  1479. */
  1480. public function setIsOld($isOld): UserEntity
  1481. {
  1482. $this->isOld = $isOld;
  1483. return $this;
  1484. }
  1485. /**
  1486. * @return mixed
  1487. */
  1488. public function getFugou()
  1489. {
  1490. return $this->fugou;
  1491. }
  1492. /**
  1493. * @param mixed $fugou
  1494. * @return UserEntity
  1495. */
  1496. public function setFugou($fugou): UserEntity
  1497. {
  1498. $this->fugou = $fugou;
  1499. return $this;
  1500. }
  1501. /**
  1502. * @return mixed
  1503. */
  1504. public function getJbpIdOld()
  1505. {
  1506. return $this->jbpIdOld;
  1507. }
  1508. /**
  1509. * @param mixed $jbpIdOld
  1510. * @return UserEntity
  1511. */
  1512. public function setJbpIdOld($jbpIdOld): UserEntity
  1513. {
  1514. $this->jbpIdOld = $jbpIdOld;
  1515. return $this;
  1516. }
  1517. /**
  1518. * @return mixed
  1519. */
  1520. public function getUnameOld()
  1521. {
  1522. return $this->unameOld;
  1523. }
  1524. /**
  1525. * @param mixed $unameOld
  1526. * @return UserEntity
  1527. */
  1528. public function setUnameOld($unameOld): UserEntity
  1529. {
  1530. $this->unameOld = $unameOld;
  1531. return $this;
  1532. }
  1533. /**
  1534. * @return mixed
  1535. */
  1536. public function getAmountOld()
  1537. {
  1538. return $this->amountOld;
  1539. }
  1540. /**
  1541. * @param mixed $amountOld
  1542. * @return UserEntity
  1543. */
  1544. public function setAmountOld($amountOld): UserEntity
  1545. {
  1546. $this->amountOld = $amountOld;
  1547. return $this;
  1548. }
  1549. /**
  1550. * @return mixed
  1551. */
  1552. public function getSpreadOld()
  1553. {
  1554. return $this->spreadOld;
  1555. }
  1556. /**
  1557. * @param mixed $spreadOld
  1558. * @return UserEntity
  1559. */
  1560. public function setSpreadOld($spreadOld): UserEntity
  1561. {
  1562. $this->spreadOld = $spreadOld;
  1563. return $this;
  1564. }
  1565. /**
  1566. * @return mixed
  1567. */
  1568. public function getInviteIdOd()
  1569. {
  1570. return $this->inviteIdOd;
  1571. }
  1572. /**
  1573. * @param mixed $inviteIdOd
  1574. * @return UserEntity
  1575. */
  1576. public function setInviteIdOd($inviteIdOd): UserEntity
  1577. {
  1578. $this->inviteIdOd = $inviteIdOd;
  1579. return $this;
  1580. }
  1581. /**
  1582. * @return mixed
  1583. */
  1584. public function getIsTeamOld()
  1585. {
  1586. return $this->isTeamOld;
  1587. }
  1588. /**
  1589. * @param mixed $isTeamOld
  1590. * @return UserEntity
  1591. */
  1592. public function setIsTeamOld($isTeamOld): UserEntity
  1593. {
  1594. $this->isTeamOld = $isTeamOld;
  1595. return $this;
  1596. }
  1597. /**
  1598. * @return mixed
  1599. */
  1600. public function getServerIdOld()
  1601. {
  1602. return $this->serverIdOld;
  1603. }
  1604. /**
  1605. * @param mixed $serverIdOld
  1606. * @return UserEntity
  1607. */
  1608. public function setServerIdOld($serverIdOld): UserEntity
  1609. {
  1610. $this->serverIdOld = $serverIdOld;
  1611. return $this;
  1612. }
  1613. /**
  1614. * @return mixed
  1615. */
  1616. public function getParentIdsOld()
  1617. {
  1618. return $this->parentIdsOld;
  1619. }
  1620. /**
  1621. * @param mixed $parentIdsOld
  1622. * @return UserEntity
  1623. */
  1624. public function setParentIdsOld($parentIdsOld): UserEntity
  1625. {
  1626. $this->parentIdsOld = $parentIdsOld;
  1627. return $this;
  1628. }
  1629. /**
  1630. * @return mixed
  1631. */
  1632. public function getUserLevelIdOld()
  1633. {
  1634. return $this->userLevelIdOld;
  1635. }
  1636. /**
  1637. * @param mixed $userLevelIdOld
  1638. * @return UserEntity
  1639. */
  1640. public function setUserLevelIdOld($userLevelIdOld): UserEntity
  1641. {
  1642. $this->userLevelIdOld = $userLevelIdOld;
  1643. return $this;
  1644. }
  1645. /**
  1646. * @return mixed
  1647. */
  1648. public function getOriginatorIdOld()
  1649. {
  1650. return $this->originatorIdOld;
  1651. }
  1652. /**
  1653. * @param mixed $originatorIdOld
  1654. * @return UserEntity
  1655. */
  1656. public function setOriginatorIdOld($originatorIdOld): UserEntity
  1657. {
  1658. $this->originatorIdOld = $originatorIdOld;
  1659. return $this;
  1660. }
  1661. /**
  1662. * @return mixed
  1663. */
  1664. public function getTotalAmountOld()
  1665. {
  1666. return $this->totalAmountOld;
  1667. }
  1668. /**
  1669. * @param mixed $totalAmountOld
  1670. * @return UserEntity
  1671. */
  1672. public function setTotalAmountOld($totalAmountOld): UserEntity
  1673. {
  1674. $this->totalAmountOld = $totalAmountOld;
  1675. return $this;
  1676. }
  1677. /**
  1678. * @return mixed
  1679. */
  1680. public function getTotalWithdrawQuotaOld()
  1681. {
  1682. return $this->totalWithdrawQuotaOld;
  1683. }
  1684. /**
  1685. * @param mixed $totalWithdrawQuotaOld
  1686. * @return UserEntity
  1687. */
  1688. public function setTotalWithdrawQuotaOld($totalWithdrawQuotaOld): UserEntity
  1689. {
  1690. $this->totalWithdrawQuotaOld = $totalWithdrawQuotaOld;
  1691. return $this;
  1692. }
  1693. /**
  1694. * @return mixed
  1695. */
  1696. public function getTobeAmountOld()
  1697. {
  1698. return $this->tobeAmountOld;
  1699. }
  1700. /**
  1701. * @param mixed $tobeAmountOld
  1702. * @return UserEntity
  1703. */
  1704. public function setTobeAmountOld($tobeAmountOld): UserEntity
  1705. {
  1706. $this->tobeAmountOld = $tobeAmountOld;
  1707. return $this;
  1708. }
  1709. /**
  1710. * @return mixed
  1711. */
  1712. public function getPerContribute()
  1713. {
  1714. return $this->perContribute;
  1715. }
  1716. /**
  1717. * @param mixed $perContribute
  1718. * @return UserEntity
  1719. */
  1720. public function setPerContribute($perContribute): UserEntity
  1721. {
  1722. $this->perContribute = $perContribute;
  1723. return $this;
  1724. }
  1725. /**
  1726. * @return mixed
  1727. */
  1728. public function getWithdrawQuotaOld()
  1729. {
  1730. return $this->withdrawQuotaOld;
  1731. }
  1732. /**
  1733. * @param mixed $withdrawQuotaOld
  1734. * @return UserEntity
  1735. */
  1736. public function setWithdrawQuotaOld($withdrawQuotaOld): UserEntity
  1737. {
  1738. $this->withdrawQuotaOld = $withdrawQuotaOld;
  1739. return $this;
  1740. }
  1741. /**
  1742. * @return mixed
  1743. */
  1744. public function getIdentityUpTime()
  1745. {
  1746. return $this->identityUpTime;
  1747. }
  1748. /**
  1749. * @param mixed $identityUpTime
  1750. * @return UserEntity
  1751. */
  1752. public function setIdentityUpTime($identityUpTime): UserEntity
  1753. {
  1754. $this->identityUpTime = $identityUpTime;
  1755. return $this;
  1756. }
  1757. }