| 12345678910111213141516171819202122232425 |
- <?php
- namespace app\entity\admin\request\profits;
- use app\entity\CommonEntity;
- class ExecuteProfitRequestEntity extends CommonEntity
- {
- // 0号线分红日志id
- public $zeroUserProfitId;
- public function getZeroUserProfitId()
- {
- return $this->zeroUserProfitId;
- }
- public function setZeroUserProfitId($zeroUserProfitId): ExecuteProfitRequestEntity
- {
- $this->zeroUserProfitId = $zeroUserProfitId;
- return $this;
- }
- }
|