feat: update appraisal ordering and payment flows

This commit is contained in:
wushumin
2026-06-03 18:14:40 +08:00
parent 0838db5aba
commit 6383ec5a2a
50 changed files with 6143 additions and 988 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace app\controller\open;
use app\support\ShouqianbaPaymentService;
use support\Request;
class ShouqianbaPaymentController
{
public function notify(Request $request)
{
$service = new ShouqianbaPaymentService();
try {
$service->handleNotification($request->rawBody());
return json($service->notificationResponse(true));
} catch (\Throwable $e) {
return json($service->notificationResponse(false));
}
}
}