Files
shop-platform/src/app/event/message/MessageUserWithdrawalApply.php
2025-10-29 15:32:26 +08:00

36 lines
550 B
PHP

<?php
/**
*/
namespace app\event\message;
use app\model\member\Withdraw;
use GuzzleHttp\Exception\GuzzleException;
/**
* 会员提现申请发送消息
*/
class MessageUserWithdrawalApply
{
/**
* @param $param
* @return void|null
* @throws GuzzleException
*/
public function handle($param)
{
//发送订单消息
if ($param["keywords"] == "USER_WITHDRAWAL_APPLY") {
$model = new Withdraw();
return $model->messageUserWithdrawalApply($param);
}
}
}