ExecuteProfitRequestEntity.php 471 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace app\entity\admin\request\profits;
  3. use app\entity\CommonEntity;
  4. class ExecuteProfitRequestEntity extends CommonEntity
  5. {
  6. // 0号线分红日志id
  7. public $zeroUserProfitId;
  8. public function getZeroUserProfitId()
  9. {
  10. return $this->zeroUserProfitId;
  11. }
  12. public function setZeroUserProfitId($zeroUserProfitId): ExecuteProfitRequestEntity
  13. {
  14. $this->zeroUserProfitId = $zeroUserProfitId;
  15. return $this;
  16. }
  17. }