This commit is contained in:
GYJ
2024-11-12 11:21:25 +08:00
parent af10e0b809
commit dfdf02ffbe

View File

@@ -946,9 +946,11 @@ public class PayService {
String status = data.getString("status");
String cartStatus = "";
switch (status) {
case "0": //交易失败
// 交易失败
case "0":
break;
case "1": //交易成功
// 交易成功
case "1":
//修改数据库中购物车数据
int cartCount = tbCashierCartMapper.updateStatusByOrderId(orderId.toString(), "final");