chore(addon): 添加线下支付及华为支付基本配置

This commit is contained in:
2025-12-01 11:36:51 +08:00
parent 3a7f510e19
commit e51f6c6544
40 changed files with 3238 additions and 12 deletions

View File

@@ -0,0 +1,16 @@
<?php
namespace addon\offlinepay\event;
use addon\offlinepay\model\Pay as PayModel;
class MessageOfflinepayWaitAudit
{
public function handle($param)
{
if ($param["keywords"] == "OFFLINEPAY_WAIT_AUDIT") {
$pay_model = new PayModel();
return $pay_model->messageWaitAudit($param);
}
}
}