新增服务包支付回调处理

This commit is contained in:
2024-04-11 16:25:30 +08:00
parent d7338c495b
commit 8bda29a15e
8 changed files with 561 additions and 4 deletions
+9
View File
@@ -768,6 +768,15 @@ Router::addGroup('/callback', function () {
// 退款回调
Router::post('/refund', [CallBackController::class, 'wxPayDetectionRefundCallBack']);
});
// 服务包
Router::addGroup('/service', function () {
// 支付成功回调
Router::post('/success', [CallBackController::class, 'wxPayServiceSuccessCallBack']);
// 退款回调
Router::post('/refund', [CallBackController::class, 'wxPayServiceRefundCallBack']);
});
});
// im聊天回调