增加支付成功语音提示;增加扫码支付;

This commit is contained in:
2026-03-10 09:41:34 +08:00
parent 6c857dd1f7
commit 7bcb74d9e0
7 changed files with 489 additions and 7 deletions
@@ -216,6 +216,18 @@ interface ApiService {
@Query("totalFee") totalFee: String? = null
): ApiResponse<String?>
/**
* 二维码支付
* @param orderType 0付款 1会员充值
*/
@GET
suspend fun qrCodePay(
@Url url: String = "${GlobalData.appBaseUrl}/terminal/neglect/pay/app/qrCodePay",
@Query("authCode") authCode: String,
@Query("outTradeNo") orderNo: String,
@Query("orderType") orderType:Int
): ApiResponse<String?>
/**
* 开餐-生成订单
*/