支付回调 重试机制

扫码支付 条码校验
This commit is contained in:
2025-04-23 16:26:48 +08:00
parent f76208c2db
commit 209ee68153
5 changed files with 23 additions and 7 deletions

View File

@@ -37,7 +37,7 @@ public class NotifyController {
JSONObject czg = CzgPayUtils.getCzg(respParams);
AssertUtil.isNull(czg, "支付回调数据为空");
log.info("支付回调数据为:{}", czg);
orderInfoService.payCallBackOrder(czg.getString("mchOrderNo"), czg);
orderInfoService.payCallBackOrder(czg.getString("mchOrderNo"), czg, 0);
return SUCCESS;
}