zhibing.pu
2024-08-28 f021540afe09a1b9bfeb9cefeb030e6ccf09375d
ruoyi-api/ruoyi-api-payment/src/main/java/com/ruoyi/payment/api/feignClient/WxPaymentClient.java
@@ -6,6 +6,7 @@
import com.ruoyi.payment.api.model.WxPaymentRefundModel;
import com.ruoyi.payment.api.vo.NotifyV3PayDecodeRespBody;
import com.ruoyi.payment.api.vo.PaymentOrder;
import com.ruoyi.payment.api.vo.WxRefundNotifyResp;
import io.swagger.annotations.ApiOperation;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PostMapping;
@@ -65,4 +66,10 @@
   @ApiOperation("订单退款")
   @PostMapping(value = "/wx/refundOrderR")
   public R<String> refundOrderR(@RequestBody WxPaymentRefundModel model);
   @ApiOperation("订单退款回调")
   @PostMapping(value = "/wx/refund/notify")
   R<WxRefundNotifyResp> refundNotify(HttpServletRequest request);
}