WithdrawEvent.php 444 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. *
  5. * User: king/QQ:995265288
  6. * Date: 2018/6/5 下午3:33
  7. * Email: livsyitian@163.com
  8. */
  9. namespace app\common\events;
  10. use app\common\models\Withdraw;
  11. class WithdrawEvent extends Event
  12. {
  13. private $withdraw;
  14. public function __construct(Withdraw $withdraw)
  15. {
  16. $this->withdraw = $withdraw;
  17. }
  18. public function getWithdrawModel()
  19. {
  20. return $this->withdraw;
  21. }
  22. }