| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- <?php
- namespace app\entity\data\shared;
- use app\entity\data\DataEntity;
- class SharedProsperityBalanceLogEntity extends DataEntity
- {
- public $id = null; // 主键
- public $userId = null; // 用户id
- public $pm = null; // 1增加 0减少
- public $type = null; // 类型 1合伙人分红 2共富奖
- public $level = null; // 用户等级
- public $radio = null; // 分配比例
- public $total_profit = null; // 总佣金
- public $old = null; // 变更前佣金
- public $number = null; // 操作佣金
- public $after = null; // 变更后佣金
- public $status = null; // 状态 -1失效 0待生效 1已生效
- public $createTime = null; // 创建时间
- public function getId()
- {
- return $this->id;
- }
- public function setId($id): SharedProsperityBalanceLogEntity
- {
- $this->id = $id;
- return $this;
- }
- public function getPm()
- {
- return $this->pm;
- }
- public function setPm($pm): SharedProsperityBalanceLogEntity
- {
- $this->pm = $pm;
- return $this;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setType($type): SharedProsperityBalanceLogEntity
- {
- $this->type = $type;
- return $this;
- }
- public function getUserId()
- {
- return $this->userId;
- }
- public function setUserId($userId): SharedProsperityBalanceLogEntity
- {
- $this->userId = $userId;
- return $this;
- }
- public function getLevel()
- {
- return $this->level;
- }
- public function setLevel($level): SharedProsperityBalanceLogEntity
- {
- $this->level = $level;
- return $this;
- }
- public function getRadio()
- {
- return $this->radio;
- }
- public function setRadio($radio): SharedProsperityBalanceLogEntity
- {
- $this->radio = $radio;
- return $this;
- }
- public function getTotalProfit()
- {
- return $this->total_profit;
- }
- public function setTotalProfit($total_profit): SharedProsperityBalanceLogEntity
- {
- $this->total_profit = $total_profit;
- return $this;
- }
- public function getOld()
- {
- return $this->old;
- }
- public function setOld($old): SharedProsperityBalanceLogEntity
- {
- $this->old = $old;
- return $this;
- }
- public function getNumber()
- {
- return $this->number;
- }
- public function setNumber($number): SharedProsperityBalanceLogEntity
- {
- $this->number = $number;
- return $this;
- }
- public function getAfter()
- {
- return $this->after;
- }
- public function setAfter($after): SharedProsperityBalanceLogEntity
- {
- $this->after = $after;
- return $this;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setStatus($status): SharedProsperityBalanceLogEntity
- {
- $this->status = $status;
- return $this;
- }
- public function getCreateTime()
- {
- return $this->createTime;
- }
- public function setCreateTime($createTime): SharedProsperityBalanceLogEntity
- {
- $this->createTime = $createTime;
- return $this;
- }
- }
|