0
0
Files
Babyclass/app/Events/WithdrawCompleted.php
2020-08-04 10:09:42 +08:00

22 lines
310 B
PHP

<?php
namespace App\Events;
use App\Models\Withdraw;
use Illuminate\Queue\SerializesModels;
/**
* 提现审核完成事件
*/
class WithdrawCompleted
{
use SerializesModels;
public $withdraw;
public function __construct(Withdraw $withdraw)
{
$this->withdraw = $withdraw;
}
}