This commit is contained in:
2025-10-29 15:32:26 +08:00
parent d90614805b
commit b7462657cd
78921 changed files with 2753938 additions and 71 deletions

View File

@@ -0,0 +1,35 @@
<?php
/**
*/
namespace app\event\message;
use addon\fenxiao\model\FenxiaoWithdraw;
use GuzzleHttp\Exception\GuzzleException;
/**
* 分销提现申请发送消息
*/
class MessageFenxiaoWithdrawalApply
{
/**
* @param $param
* @return void|null
* @throws GuzzleException
*/
public function handle($param)
{
//发送订单消息
if ($param[ "keywords" ] == "FENXIAO_WITHDRAWAL_APPLY") {
$model = new FenxiaoWithdraw();
return $model->messageFenxiaoWithdrawalApply($param);
}
}
}