| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965 |
- <?php
- namespace app\entity\data\user;
- use app\entity\data\DataEntity;
- class UserEntity extends DataEntity
- {
- public $uid = null; // 用户id
- public $wechatUserId = null; // 微信用户 id
- public $aliUserId = null; // 支付宝用户id
- public $account = null; // 用户账号
- public $pwd = null; // 用户密码
- public $realName = null; // 真实姓名
- public $spreadUid = null; // 推广员id
- public $sex = null; // 性别
- public $birthday = null; // 生日
- public $cardId = null; // 身份证号码
- public $mark = null; // 用户备注
- public $labelId = null; // 用户标签 id
- public $groupId = null; // 用户分组id
- public $nickname = null; // 用户昵称
- public $avatar = null; // 用户头像
- public $phone = null; // 手机号码
- public $addres = null; // 地址
- public $createTime = null; // 添加时间
- public $lastTime = null; // 最后一次登录时间
- public $lastIp = null; // 最后一次登录ip
- public $score = null; // 积分(20220712改版新增)
- public $nowMoney = null; // 用户余额
- public $brokeragePrice = null; // 佣金金额
- public $repurchasePrice = null; // 复购余额
- public $memberBrokeragePrice = null; // 会员商品直推佣金
- public $status = null; // 1为正常,0为禁止
- public $spreadTime = null; // 推广员关联时间
- public $userType = null; // 用户类型
- public $promoterTime = null; // 成功推广时间
- public $nowScore = null; // 用户积分
- public $isPromoter = null; // 是否为推广员
- public $mainUid = null; // 主账号
- public $payCount = null; // 用户购买次数
- public $payPrice = null; // 用户消费金额
- public $spreadCount = null; // 下级人数
- public $adrId = null; // 身份所对应的区域id
- public $identity = null; // 1 镇代 2 县代 3 市代 4 商户 5 推广员 6渠道商
- public $merId = null; // 首次消费绑定商户
- public $merTopping = null; // 置顶商户
- public $userName = null;
- public $annuityFrozen = null; // 养老金 冻结
- public $annuityNum = null; // 几笔养老金
- public $annuity = null; // 养老金
- public $agentRebate = null; // 推荐推广员返利
- public $merRebate = null; // 推荐商户返利
- public $promoterRebate = null; // 推荐代理返利
- public $crossStore = null; // 跨店收入
- public $jurisdiction = null; // 辖区内收入
- public $otherJurisdictions = null; // 跨区收入
- public $advFee = null; // 广告费
- public $xqxiaofei = null; // 自己辖区消费返利
- public $birthday60 = null; // 60岁生日
- public $cardNumber = null; // 卡号 养老金
- public $annuityYiqu = null; // 已支取
- public $isNew = null; // 是否为新用户:0=>是,1=>不是
- public $adminAgentRate = null; // 平台收入
- public $locktime = null; // 会员锁定时间
- public $userNumber = null; // 用户编号
- public $im = null; // 环信账号。0:未注册。1:已注册。
- public $imUuid = null; // 环信UUID
- public $imUserid = null; // 环信username
- public $imPassword = null; // 环信password
- public $testUser = null; // 是否是测试用户
- public $isChannel = null; // 是否是渠道商
- public $annuityOnce = null; // 0-未结算过养老金,1-已结算过养老金
- public $firstSign = null; // 首次签到:0-未签到。1-已签到。2-首次签到断签。3-首次签到30天
- public $isDel = null; // 0未删除1删除
- public $firstShopping = null; // 首次消费0-未消费,1-已消费
- public $external = null; // 用户来源1:储蓄保,2:长寿美,3:聚宝盆1.0
- public $externalId = null; // 外部用户ID
- public $scoreBeishengtang = null; // 北参堂积分
- public $levelId = null;
- public $level = null;
- public $isShow = null; // 用户来源1 系统注册 2 集团导入商户 3 激活码激活商户
- public $userGroup = null; // 1消费者 2,推广业务员 3,业务经理 4初级合伙人5中级合伙人 6高级合伙人 7.懂事
- public $upVipTime = null; // 升级大v时间
- public $upAgencyTime = null; // 升级代理时间
- public $manageAddress = null; // 管理区域id串
- public $isShopPartner = null; // 是否是创客合伙人
- public $contribute = null; // 贡献值
- public $jingdou = null; // 金豆
- public $vr = null; // 购物金
- public $pv = null; // pv值
- public $hongbao = null; // 红包奖励,只有在会员系统的用户才有此奖励
- public $oldVipLimit = null; // 老会员购买产品的额度
- public $isOld = null; // 是否为1.0老系统用户,0为新系统,1为1.0老会员系统
- public $fugou = null; // 复购金
- public $jbpIdOld = null; // 父级id集合_id(聚保盆id)
- public $unameOld = null; // 聚保盆1.0_用户名
- public $amountOld = null; // 聚保盆1.0_个人佣金
- public $spreadOld = null; // 聚保盆1.0_上级
- public $inviteIdOd = null; // 聚保盆1.0_上级ID(jbp_id)
- public $isTeamOld = null; // 聚保盆1.0_是否时间共建联盟(0:否,1:是)
- public $serverIdOld = null; // 聚保盆1.0_服务中心
- public $parentIdsOld = null; // 聚保盆1.0_父级id集合
- public $userLevelIdOld = null; // 聚保盆1.0_权益等级
- public $originatorIdOld = null; // 聚保盆1.0_对应的联创等级
- public $totalAmountOld = null; // 累计佣金
- public $totalWithdrawQuotaOld = null;
- public $tobeAmountOld = null; // 冻结佣金
- public $perContribute = null; // 个人贡献值中的直推贡献值(用于计算业务经理之前的身份升级)
- public $withdrawQuotaOld = null; // 提现额度
- public $identityUpTime = null; // 身份升级成业务员的时间
- /**
- * @return mixed
- */
- public function getUid()
- {
- return $this->uid;
- }
- /**
- * @param mixed $uid
- * @return UserEntity
- */
- public function setUid($uid): UserEntity
- {
- $this->uid = $uid;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getWechatUserId()
- {
- return $this->wechatUserId;
- }
- /**
- * @param mixed $wechatUserId
- * @return UserEntity
- */
- public function setWechatUserId($wechatUserId): UserEntity
- {
- $this->wechatUserId = $wechatUserId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getAliUserId()
- {
- return $this->aliUserId;
- }
- /**
- * @param mixed $aliUserId
- * @return UserEntity
- */
- public function setAliUserId($aliUserId): UserEntity
- {
- $this->aliUserId = $aliUserId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getAccount()
- {
- return $this->account;
- }
- /**
- * @param mixed $account
- * @return UserEntity
- */
- public function setAccount($account): UserEntity
- {
- $this->account = $account;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getPwd()
- {
- return $this->pwd;
- }
- /**
- * @param mixed $pwd
- * @return UserEntity
- */
- public function setPwd($pwd): UserEntity
- {
- $this->pwd = $pwd;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getRealName()
- {
- return $this->realName;
- }
- /**
- * @param mixed $realName
- * @return UserEntity
- */
- public function setRealName($realName): UserEntity
- {
- $this->realName = $realName;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getSpreadUid()
- {
- return $this->spreadUid;
- }
- /**
- * @param mixed $spreadUid
- * @return UserEntity
- */
- public function setSpreadUid($spreadUid): UserEntity
- {
- $this->spreadUid = $spreadUid;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getSex()
- {
- return $this->sex;
- }
- /**
- * @param mixed $sex
- * @return UserEntity
- */
- public function setSex($sex): UserEntity
- {
- $this->sex = $sex;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getBirthday()
- {
- return $this->birthday;
- }
- /**
- * @param mixed $birthday
- * @return UserEntity
- */
- public function setBirthday($birthday): UserEntity
- {
- $this->birthday = $birthday;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getCardId()
- {
- return $this->cardId;
- }
- /**
- * @param mixed $cardId
- * @return UserEntity
- */
- public function setCardId($cardId): UserEntity
- {
- $this->cardId = $cardId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getMark()
- {
- return $this->mark;
- }
- /**
- * @param mixed $mark
- * @return UserEntity
- */
- public function setMark($mark): UserEntity
- {
- $this->mark = $mark;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getLabelId()
- {
- return $this->labelId;
- }
- /**
- * @param mixed $labelId
- * @return UserEntity
- */
- public function setLabelId($labelId): UserEntity
- {
- $this->labelId = $labelId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getGroupId()
- {
- return $this->groupId;
- }
- /**
- * @param mixed $groupId
- * @return UserEntity
- */
- public function setGroupId($groupId): UserEntity
- {
- $this->groupId = $groupId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getNickname()
- {
- return $this->nickname;
- }
- /**
- * @param mixed $nickname
- * @return UserEntity
- */
- public function setNickname($nickname): UserEntity
- {
- $this->nickname = $nickname;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getAvatar()
- {
- return $this->avatar;
- }
- /**
- * @param mixed $avatar
- * @return UserEntity
- */
- public function setAvatar($avatar): UserEntity
- {
- $this->avatar = $avatar;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getPhone()
- {
- return $this->phone;
- }
- /**
- * @param mixed $phone
- * @return UserEntity
- */
- public function setPhone($phone): UserEntity
- {
- $this->phone = $phone;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getAddres()
- {
- return $this->addres;
- }
- /**
- * @param mixed $addres
- * @return UserEntity
- */
- public function setAddres($addres): UserEntity
- {
- $this->addres = $addres;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getCreateTime()
- {
- return $this->createTime;
- }
- /**
- * @param mixed $createTime
- * @return UserEntity
- */
- public function setCreateTime($createTime): UserEntity
- {
- $this->createTime = $createTime;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getLastTime()
- {
- return $this->lastTime;
- }
- /**
- * @param mixed $lastTime
- * @return UserEntity
- */
- public function setLastTime($lastTime): UserEntity
- {
- $this->lastTime = $lastTime;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getLastIp()
- {
- return $this->lastIp;
- }
- /**
- * @param mixed $lastIp
- * @return UserEntity
- */
- public function setLastIp($lastIp): UserEntity
- {
- $this->lastIp = $lastIp;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getScore()
- {
- return $this->score;
- }
- /**
- * @param mixed $score
- * @return UserEntity
- */
- public function setScore($score): UserEntity
- {
- $this->score = $score;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getNowMoney()
- {
- return $this->nowMoney;
- }
- /**
- * @param mixed $nowMoney
- * @return UserEntity
- */
- public function setNowMoney($nowMoney): UserEntity
- {
- $this->nowMoney = $nowMoney;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getBrokeragePrice()
- {
- return $this->brokeragePrice;
- }
- /**
- * @param mixed $brokeragePrice
- * @return UserEntity
- */
- public function setBrokeragePrice($brokeragePrice): UserEntity
- {
- $this->brokeragePrice = $brokeragePrice;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getRepurchasePrice()
- {
- return $this->repurchasePrice;
- }
- /**
- * @param mixed $repurchasePrice
- * @return UserEntity
- */
- public function setRepurchasePrice($repurchasePrice): UserEntity
- {
- $this->repurchasePrice = $repurchasePrice;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getMemberBrokeragePrice()
- {
- return $this->memberBrokeragePrice;
- }
- /**
- * @param mixed $memberBrokeragePrice
- * @return UserEntity
- */
- public function setMemberBrokeragePrice($memberBrokeragePrice): UserEntity
- {
- $this->memberBrokeragePrice = $memberBrokeragePrice;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getStatus()
- {
- return $this->status;
- }
- /**
- * @param mixed $status
- * @return UserEntity
- */
- public function setStatus($status): UserEntity
- {
- $this->status = $status;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getSpreadTime()
- {
- return $this->spreadTime;
- }
- /**
- * @param mixed $spreadTime
- * @return UserEntity
- */
- public function setSpreadTime($spreadTime): UserEntity
- {
- $this->spreadTime = $spreadTime;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getUserType()
- {
- return $this->userType;
- }
- /**
- * @param mixed $userType
- * @return UserEntity
- */
- public function setUserType($userType): UserEntity
- {
- $this->userType = $userType;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getPromoterTime()
- {
- return $this->promoterTime;
- }
- /**
- * @param mixed $promoterTime
- * @return UserEntity
- */
- public function setPromoterTime($promoterTime): UserEntity
- {
- $this->promoterTime = $promoterTime;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getNowScore()
- {
- return $this->nowScore;
- }
- /**
- * @param mixed $nowScore
- * @return UserEntity
- */
- public function setNowScore($nowScore): UserEntity
- {
- $this->nowScore = $nowScore;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getIsPromoter()
- {
- return $this->isPromoter;
- }
- /**
- * @param mixed $isPromoter
- * @return UserEntity
- */
- public function setIsPromoter($isPromoter): UserEntity
- {
- $this->isPromoter = $isPromoter;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getMainUid()
- {
- return $this->mainUid;
- }
- /**
- * @param mixed $mainUid
- * @return UserEntity
- */
- public function setMainUid($mainUid): UserEntity
- {
- $this->mainUid = $mainUid;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getPayCount()
- {
- return $this->payCount;
- }
- /**
- * @param mixed $payCount
- * @return UserEntity
- */
- public function setPayCount($payCount): UserEntity
- {
- $this->payCount = $payCount;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getPayPrice()
- {
- return $this->payPrice;
- }
- /**
- * @param mixed $payPrice
- * @return UserEntity
- */
- public function setPayPrice($payPrice): UserEntity
- {
- $this->payPrice = $payPrice;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getSpreadCount()
- {
- return $this->spreadCount;
- }
- /**
- * @param mixed $spreadCount
- * @return UserEntity
- */
- public function setSpreadCount($spreadCount): UserEntity
- {
- $this->spreadCount = $spreadCount;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getAdrId()
- {
- return $this->adrId;
- }
- /**
- * @param mixed $adrId
- * @return UserEntity
- */
- public function setAdrId($adrId): UserEntity
- {
- $this->adrId = $adrId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getIdentity()
- {
- return $this->identity;
- }
- /**
- * @param mixed $identity
- * @return UserEntity
- */
- public function setIdentity($identity): UserEntity
- {
- $this->identity = $identity;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getMerId()
- {
- return $this->merId;
- }
- /**
- * @param mixed $merId
- * @return UserEntity
- */
- public function setMerId($merId): UserEntity
- {
- $this->merId = $merId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getMerTopping()
- {
- return $this->merTopping;
- }
- /**
- * @param mixed $merTopping
- * @return UserEntity
- */
- public function setMerTopping($merTopping): UserEntity
- {
- $this->merTopping = $merTopping;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getUserName()
- {
- return $this->userName;
- }
- /**
- * @param mixed $userName
- * @return UserEntity
- */
- public function setUserName($userName): UserEntity
- {
- $this->userName = $userName;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getAnnuityFrozen()
- {
- return $this->annuityFrozen;
- }
- /**
- * @param mixed $annuityFrozen
- * @return UserEntity
- */
- public function setAnnuityFrozen($annuityFrozen): UserEntity
- {
- $this->annuityFrozen = $annuityFrozen;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getAnnuityNum()
- {
- return $this->annuityNum;
- }
- /**
- * @param mixed $annuityNum
- * @return UserEntity
- */
- public function setAnnuityNum($annuityNum): UserEntity
- {
- $this->annuityNum = $annuityNum;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getAnnuity()
- {
- return $this->annuity;
- }
- /**
- * @param mixed $annuity
- * @return UserEntity
- */
- public function setAnnuity($annuity): UserEntity
- {
- $this->annuity = $annuity;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getAgentRebate()
- {
- return $this->agentRebate;
- }
- /**
- * @param mixed $agentRebate
- * @return UserEntity
- */
- public function setAgentRebate($agentRebate): UserEntity
- {
- $this->agentRebate = $agentRebate;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getMerRebate()
- {
- return $this->merRebate;
- }
- /**
- * @param mixed $merRebate
- * @return UserEntity
- */
- public function setMerRebate($merRebate): UserEntity
- {
- $this->merRebate = $merRebate;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getPromoterRebate()
- {
- return $this->promoterRebate;
- }
- /**
- * @param mixed $promoterRebate
- * @return UserEntity
- */
- public function setPromoterRebate($promoterRebate): UserEntity
- {
- $this->promoterRebate = $promoterRebate;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getCrossStore()
- {
- return $this->crossStore;
- }
- /**
- * @param mixed $crossStore
- * @return UserEntity
- */
- public function setCrossStore($crossStore): UserEntity
- {
- $this->crossStore = $crossStore;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getJurisdiction()
- {
- return $this->jurisdiction;
- }
- /**
- * @param mixed $jurisdiction
- * @return UserEntity
- */
- public function setJurisdiction($jurisdiction): UserEntity
- {
- $this->jurisdiction = $jurisdiction;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getOtherJurisdictions()
- {
- return $this->otherJurisdictions;
- }
- /**
- * @param mixed $otherJurisdictions
- * @return UserEntity
- */
- public function setOtherJurisdictions($otherJurisdictions): UserEntity
- {
- $this->otherJurisdictions = $otherJurisdictions;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getAdvFee()
- {
- return $this->advFee;
- }
- /**
- * @param mixed $advFee
- * @return UserEntity
- */
- public function setAdvFee($advFee): UserEntity
- {
- $this->advFee = $advFee;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getXqxiaofei()
- {
- return $this->xqxiaofei;
- }
- /**
- * @param mixed $xqxiaofei
- * @return UserEntity
- */
- public function setXqxiaofei($xqxiaofei): UserEntity
- {
- $this->xqxiaofei = $xqxiaofei;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getBirthday60()
- {
- return $this->birthday60;
- }
- /**
- * @param mixed $birthday60
- * @return UserEntity
- */
- public function setBirthday60($birthday60): UserEntity
- {
- $this->birthday60 = $birthday60;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getCardNumber()
- {
- return $this->cardNumber;
- }
- /**
- * @param mixed $cardNumber
- * @return UserEntity
- */
- public function setCardNumber($cardNumber): UserEntity
- {
- $this->cardNumber = $cardNumber;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getAnnuityYiqu()
- {
- return $this->annuityYiqu;
- }
- /**
- * @param mixed $annuityYiqu
- * @return UserEntity
- */
- public function setAnnuityYiqu($annuityYiqu): UserEntity
- {
- $this->annuityYiqu = $annuityYiqu;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getIsNew()
- {
- return $this->isNew;
- }
- /**
- * @param mixed $isNew
- * @return UserEntity
- */
- public function setIsNew($isNew): UserEntity
- {
- $this->isNew = $isNew;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getAdminAgentRate()
- {
- return $this->adminAgentRate;
- }
- /**
- * @param mixed $adminAgentRate
- * @return UserEntity
- */
- public function setAdminAgentRate($adminAgentRate): UserEntity
- {
- $this->adminAgentRate = $adminAgentRate;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getLocktime()
- {
- return $this->locktime;
- }
- /**
- * @param mixed $locktime
- * @return UserEntity
- */
- public function setLocktime($locktime): UserEntity
- {
- $this->locktime = $locktime;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getUserNumber()
- {
- return $this->userNumber;
- }
- /**
- * @param mixed $userNumber
- * @return UserEntity
- */
- public function setUserNumber($userNumber): UserEntity
- {
- $this->userNumber = $userNumber;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getIm()
- {
- return $this->im;
- }
- /**
- * @param mixed $im
- * @return UserEntity
- */
- public function setIm($im): UserEntity
- {
- $this->im = $im;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getImUuid()
- {
- return $this->imUuid;
- }
- /**
- * @param mixed $imUuid
- * @return UserEntity
- */
- public function setImUuid($imUuid): UserEntity
- {
- $this->imUuid = $imUuid;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getImUserid()
- {
- return $this->imUserid;
- }
- /**
- * @param mixed $imUserid
- * @return UserEntity
- */
- public function setImUserid($imUserid): UserEntity
- {
- $this->imUserid = $imUserid;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getImPassword()
- {
- return $this->imPassword;
- }
- /**
- * @param mixed $imPassword
- * @return UserEntity
- */
- public function setImPassword($imPassword): UserEntity
- {
- $this->imPassword = $imPassword;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getTestUser()
- {
- return $this->testUser;
- }
- /**
- * @param mixed $testUser
- * @return UserEntity
- */
- public function setTestUser($testUser): UserEntity
- {
- $this->testUser = $testUser;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getIsChannel()
- {
- return $this->isChannel;
- }
- /**
- * @param mixed $isChannel
- * @return UserEntity
- */
- public function setIsChannel($isChannel): UserEntity
- {
- $this->isChannel = $isChannel;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getAnnuityOnce()
- {
- return $this->annuityOnce;
- }
- /**
- * @param mixed $annuityOnce
- * @return UserEntity
- */
- public function setAnnuityOnce($annuityOnce): UserEntity
- {
- $this->annuityOnce = $annuityOnce;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getFirstSign()
- {
- return $this->firstSign;
- }
- /**
- * @param mixed $firstSign
- * @return UserEntity
- */
- public function setFirstSign($firstSign): UserEntity
- {
- $this->firstSign = $firstSign;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getIsDel()
- {
- return $this->isDel;
- }
- /**
- * @param mixed $isDel
- * @return UserEntity
- */
- public function setIsDel($isDel): UserEntity
- {
- $this->isDel = $isDel;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getFirstShopping()
- {
- return $this->firstShopping;
- }
- /**
- * @param mixed $firstShopping
- * @return UserEntity
- */
- public function setFirstShopping($firstShopping): UserEntity
- {
- $this->firstShopping = $firstShopping;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getExternal()
- {
- return $this->external;
- }
- /**
- * @param mixed $external
- * @return UserEntity
- */
- public function setExternal($external): UserEntity
- {
- $this->external = $external;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getExternalId()
- {
- return $this->externalId;
- }
- /**
- * @param mixed $externalId
- * @return UserEntity
- */
- public function setExternalId($externalId): UserEntity
- {
- $this->externalId = $externalId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getScoreBeishengtang()
- {
- return $this->scoreBeishengtang;
- }
- /**
- * @param mixed $scoreBeishengtang
- * @return UserEntity
- */
- public function setScoreBeishengtang($scoreBeishengtang): UserEntity
- {
- $this->scoreBeishengtang = $scoreBeishengtang;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getLevelId()
- {
- return $this->levelId;
- }
- /**
- * @param mixed $levelId
- * @return UserEntity
- */
- public function setLevelId($levelId): UserEntity
- {
- $this->levelId = $levelId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getLevel()
- {
- return $this->level;
- }
- /**
- * @param mixed $level
- * @return UserEntity
- */
- public function setLevel($level): UserEntity
- {
- $this->level = $level;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getIsShow()
- {
- return $this->isShow;
- }
- /**
- * @param mixed $isShow
- * @return UserEntity
- */
- public function setIsShow($isShow): UserEntity
- {
- $this->isShow = $isShow;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getUserGroup()
- {
- return $this->userGroup;
- }
- /**
- * @param mixed $userGroup
- * @return UserEntity
- */
- public function setUserGroup($userGroup): UserEntity
- {
- $this->userGroup = $userGroup;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getUpVipTime()
- {
- return $this->upVipTime;
- }
- /**
- * @param mixed $upVipTime
- * @return UserEntity
- */
- public function setUpVipTime($upVipTime): UserEntity
- {
- $this->upVipTime = $upVipTime;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getUpAgencyTime()
- {
- return $this->upAgencyTime;
- }
- /**
- * @param mixed $upAgencyTime
- * @return UserEntity
- */
- public function setUpAgencyTime($upAgencyTime): UserEntity
- {
- $this->upAgencyTime = $upAgencyTime;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getManageAddress()
- {
- return $this->manageAddress;
- }
- /**
- * @param mixed $manageAddress
- * @return UserEntity
- */
- public function setManageAddress($manageAddress): UserEntity
- {
- $this->manageAddress = $manageAddress;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getIsShopPartner()
- {
- return $this->isShopPartner;
- }
- /**
- * @param mixed $isShopPartner
- * @return UserEntity
- */
- public function setIsShopPartner($isShopPartner): UserEntity
- {
- $this->isShopPartner = $isShopPartner;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getContribute()
- {
- return $this->contribute;
- }
- /**
- * @param mixed $contribute
- * @return UserEntity
- */
- public function setContribute($contribute): UserEntity
- {
- $this->contribute = $contribute;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getJingdou()
- {
- return $this->jingdou;
- }
- /**
- * @param mixed $jingdou
- * @return UserEntity
- */
- public function setJingdou($jingdou): UserEntity
- {
- $this->jingdou = $jingdou;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getVr()
- {
- return $this->vr;
- }
- /**
- * @param mixed $vr
- * @return UserEntity
- */
- public function setVr($vr): UserEntity
- {
- $this->vr = $vr;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getPv()
- {
- return $this->pv;
- }
- /**
- * @param mixed $pv
- * @return UserEntity
- */
- public function setPv($pv): UserEntity
- {
- $this->pv = $pv;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getHongbao()
- {
- return $this->hongbao;
- }
- /**
- * @param mixed $hongbao
- * @return UserEntity
- */
- public function setHongbao($hongbao): UserEntity
- {
- $this->hongbao = $hongbao;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getOldVipLimit()
- {
- return $this->oldVipLimit;
- }
- /**
- * @param mixed $oldVipLimit
- * @return UserEntity
- */
- public function setOldVipLimit($oldVipLimit): UserEntity
- {
- $this->oldVipLimit = $oldVipLimit;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getIsOld()
- {
- return $this->isOld;
- }
- /**
- * @param mixed $isOld
- * @return UserEntity
- */
- public function setIsOld($isOld): UserEntity
- {
- $this->isOld = $isOld;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getFugou()
- {
- return $this->fugou;
- }
- /**
- * @param mixed $fugou
- * @return UserEntity
- */
- public function setFugou($fugou): UserEntity
- {
- $this->fugou = $fugou;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getJbpIdOld()
- {
- return $this->jbpIdOld;
- }
- /**
- * @param mixed $jbpIdOld
- * @return UserEntity
- */
- public function setJbpIdOld($jbpIdOld): UserEntity
- {
- $this->jbpIdOld = $jbpIdOld;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getUnameOld()
- {
- return $this->unameOld;
- }
- /**
- * @param mixed $unameOld
- * @return UserEntity
- */
- public function setUnameOld($unameOld): UserEntity
- {
- $this->unameOld = $unameOld;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getAmountOld()
- {
- return $this->amountOld;
- }
- /**
- * @param mixed $amountOld
- * @return UserEntity
- */
- public function setAmountOld($amountOld): UserEntity
- {
- $this->amountOld = $amountOld;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getSpreadOld()
- {
- return $this->spreadOld;
- }
- /**
- * @param mixed $spreadOld
- * @return UserEntity
- */
- public function setSpreadOld($spreadOld): UserEntity
- {
- $this->spreadOld = $spreadOld;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getInviteIdOd()
- {
- return $this->inviteIdOd;
- }
- /**
- * @param mixed $inviteIdOd
- * @return UserEntity
- */
- public function setInviteIdOd($inviteIdOd): UserEntity
- {
- $this->inviteIdOd = $inviteIdOd;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getIsTeamOld()
- {
- return $this->isTeamOld;
- }
- /**
- * @param mixed $isTeamOld
- * @return UserEntity
- */
- public function setIsTeamOld($isTeamOld): UserEntity
- {
- $this->isTeamOld = $isTeamOld;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getServerIdOld()
- {
- return $this->serverIdOld;
- }
- /**
- * @param mixed $serverIdOld
- * @return UserEntity
- */
- public function setServerIdOld($serverIdOld): UserEntity
- {
- $this->serverIdOld = $serverIdOld;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getParentIdsOld()
- {
- return $this->parentIdsOld;
- }
- /**
- * @param mixed $parentIdsOld
- * @return UserEntity
- */
- public function setParentIdsOld($parentIdsOld): UserEntity
- {
- $this->parentIdsOld = $parentIdsOld;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getUserLevelIdOld()
- {
- return $this->userLevelIdOld;
- }
- /**
- * @param mixed $userLevelIdOld
- * @return UserEntity
- */
- public function setUserLevelIdOld($userLevelIdOld): UserEntity
- {
- $this->userLevelIdOld = $userLevelIdOld;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getOriginatorIdOld()
- {
- return $this->originatorIdOld;
- }
- /**
- * @param mixed $originatorIdOld
- * @return UserEntity
- */
- public function setOriginatorIdOld($originatorIdOld): UserEntity
- {
- $this->originatorIdOld = $originatorIdOld;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getTotalAmountOld()
- {
- return $this->totalAmountOld;
- }
- /**
- * @param mixed $totalAmountOld
- * @return UserEntity
- */
- public function setTotalAmountOld($totalAmountOld): UserEntity
- {
- $this->totalAmountOld = $totalAmountOld;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getTotalWithdrawQuotaOld()
- {
- return $this->totalWithdrawQuotaOld;
- }
- /**
- * @param mixed $totalWithdrawQuotaOld
- * @return UserEntity
- */
- public function setTotalWithdrawQuotaOld($totalWithdrawQuotaOld): UserEntity
- {
- $this->totalWithdrawQuotaOld = $totalWithdrawQuotaOld;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getTobeAmountOld()
- {
- return $this->tobeAmountOld;
- }
- /**
- * @param mixed $tobeAmountOld
- * @return UserEntity
- */
- public function setTobeAmountOld($tobeAmountOld): UserEntity
- {
- $this->tobeAmountOld = $tobeAmountOld;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getPerContribute()
- {
- return $this->perContribute;
- }
- /**
- * @param mixed $perContribute
- * @return UserEntity
- */
- public function setPerContribute($perContribute): UserEntity
- {
- $this->perContribute = $perContribute;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getWithdrawQuotaOld()
- {
- return $this->withdrawQuotaOld;
- }
- /**
- * @param mixed $withdrawQuotaOld
- * @return UserEntity
- */
- public function setWithdrawQuotaOld($withdrawQuotaOld): UserEntity
- {
- $this->withdrawQuotaOld = $withdrawQuotaOld;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getIdentityUpTime()
- {
- return $this->identityUpTime;
- }
- /**
- * @param mixed $identityUpTime
- * @return UserEntity
- */
- public function setIdentityUpTime($identityUpTime): UserEntity
- {
- $this->identityUpTime = $identityUpTime;
- return $this;
- }
- }
|