30 lines
422 B
PHP
30 lines
422 B
PHP
<?php
|
|
/**
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
namespace app\event\message;
|
|
|
|
use addon\fenxiao\model\FenxiaoWithdraw;
|
|
|
|
/**
|
|
* 分销佣金发放通知
|
|
*/
|
|
class MessageOrderCommissionGrant
|
|
{
|
|
public function handle($param)
|
|
{
|
|
//发送订单消息
|
|
if ($param["keywords"] == "COMMISSION_GRANT") {
|
|
$model = new FenxiaoWithdraw();
|
|
return $model->messageOrderCommissionGrant($param);
|
|
}
|
|
}
|
|
} |