| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 |
- <?php
- namespace app\entity\data\shared;
- use app\entity\data\DataEntity;
- class SharedProsperityRecommendConfigEntity extends DataEntity
- {
- public $id = null; // 主键
- public $level = null; // 等级
- public $name = null; // 描述
- public $rewardRatio = null; // 推荐奖励占比
- public $shareRatio = null; // 分享奖励占比
- public $profitRatio = null; // 分红奖励占比
- public $pv = null; // 业绩
- public $consume = null; // 业绩
- public $createTime = null; // 创建时间
- public $updateTime = null; // 更新时间
- /**
- * @return mixed
- */
- public function getId()
- {
- return $this->id;
- }
- /**
- * @param mixed $id
- * @return SharedProsperityRecommendConfigEntity
- */
- public function setId($id): SharedProsperityRecommendConfigEntity
- {
- $this->id = $id;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getLevel()
- {
- return $this->level;
- }
- /**
- * @param mixed $level
- * @return SharedProsperityRecommendConfigEntity
- */
- public function setLevel($level): SharedProsperityRecommendConfigEntity
- {
- $this->level = $level;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getName()
- {
- return $this->name;
- }
- /**
- * @param mixed $name
- * @return SharedProsperityRecommendConfigEntity
- */
- public function setName($name): SharedProsperityRecommendConfigEntity
- {
- $this->name = $name;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getRewardRatio()
- {
- return $this->rewardRatio;
- }
- public function getProfitRatio()
- {
- return $this->profitRatio;
- }
- /**
- * @param mixed $rewardRatio
- * @return SharedProsperityRecommendConfigEntity
- */
- public function setRewardRatio($rewardRatio): SharedProsperityRecommendConfigEntity
- {
- $this->rewardRatio = $rewardRatio;
- return $this;
- }
- /**
- * @param mixed $profitRatio
- * @return SharedProsperityRecommendConfigEntity
- */
- public function setProfitRatio($profitRatio): SharedProsperityRecommendConfigEntity
- {
- $this->profitRatio = $profitRatio;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getPv()
- {
- return $this->pv;
- }
- /**
- * @param mixed $pv
- * @return SharedProsperityRecommendConfigEntity
- */
- public function setPv($pv): SharedProsperityRecommendConfigEntity
- {
- $this->pv = $pv;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getConsume()
- {
- return $this->consume;
- }
- /**
- * @param mixed $consume
- * @return SharedProsperityRecommendConfigEntity
- */
- public function setConsume($consume): SharedProsperityRecommendConfigEntity
- {
- $this->consume = $consume;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getCreateTime()
- {
- return $this->createTime;
- }
- /**
- * @param mixed $createTime
- * @return SharedProsperityRecommendConfigEntity
- */
- public function setCreateTime($createTime): SharedProsperityRecommendConfigEntity
- {
- $this->createTime = $createTime;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getUpdateTime()
- {
- return $this->updateTime;
- }
- /**
- * @param mixed $updateTime
- * @return SharedProsperityRecommendConfigEntity
- */
- public function setUpdateTime($updateTime): SharedProsperityRecommendConfigEntity
- {
- $this->updateTime = $updateTime;
- return $this;
- }
- public function getShareRatio()
- {
- return $this->shareRatio;
- }
- /**
- * @param mixed $updateTime
- * @return SharedProsperityRecommendConfigEntity
- */
- public function setShareRatio($shareRatio): SharedProsperityRecommendConfigEntity
- {
- $this->shareRatio = $shareRatio;
- return $this;
- }
- }
|