ruoyi-api/ruoyi-api-payment/src/main/java/com/ruoyi/payment/api/vo/AliPaymentResp.java
@@ -21,4 +21,5 @@ */ @ApiModelProperty("回调通知地址") private String notifyUrl; private String orderId; } ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TGoodsController.java
@@ -376,12 +376,13 @@ AliPaymentResp data = aliPaymentClient.payment(req).getData(); if(null != data){ data.setNotifyUrl(data.getNotifyUrl() + "/payment/callBack/ali/all"); data.setOrderId(shopOrder.getId().toString()); return AjaxResult.success(data); } } return R.ok(); }