WithdrawRebutAuditEvent.php 606 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. /**
  3. * 提现驳回审核事件
  4. *
  5. * Created by PhpStorm.
  6. *
  7. * Date: 2023/1/4
  8. */
  9. namespace app\common\events\withdraw;
  10. use app\common\events\Event;
  11. use app\common\models\Withdraw;
  12. class WithdrawRebutAuditEvent extends Event
  13. {
  14. private $withdraw;
  15. private $rebut_ids;
  16. public function __construct(Withdraw $withdraw,$rebut_ids)
  17. {
  18. $this->withdraw = $withdraw;
  19. $this->rebut_ids = $rebut_ids;
  20. }
  21. public function getWithdrawModel()
  22. {
  23. return $this->withdraw;
  24. }
  25. public function getRebutIds()
  26. {
  27. return $this->rebut_ids;
  28. }
  29. }