新增模拟支付接口

This commit is contained in:
2023-03-15 16:15:47 +08:00
parent cff132c5d4
commit f2450cbcd5
4 changed files with 149 additions and 28 deletions
+3
View File
@@ -335,6 +335,9 @@ Router::addGroup('/patient', function () {
// 获取患者订单支付数据
Router::get('/pay', [PatientOrderController::class, 'getPatientOrderPayInfo']);
// 模拟支付成功-金额为0时使用
Router::post('/pay', [PatientOrderController::class, 'addPatientOrderPay']);
});
});