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