From 55ab31e1b5d1953d48958dad6d0e33fddf3dc5b7 Mon Sep 17 00:00:00 2001 From: goupan <goupan@chinapopin.com> Date: 星期三, 24 四月 2024 21:36:43 +0800 Subject: [PATCH] 修改bug --- rest/src/main/java/cn/stylefeng/rest/ijpay/controller/AliPayController.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/rest/src/main/java/cn/stylefeng/rest/ijpay/controller/AliPayController.java b/rest/src/main/java/cn/stylefeng/rest/ijpay/controller/AliPayController.java index 7f0631d..c43ffe4 100644 --- a/rest/src/main/java/cn/stylefeng/rest/ijpay/controller/AliPayController.java +++ b/rest/src/main/java/cn/stylefeng/rest/ijpay/controller/AliPayController.java @@ -511,7 +511,7 @@ * 退款 */ @ApiOperation("支付宝退款") - @RequestMapping(value = RuleConstants.NOT_LOGIN + "/tradeRefund") + @RequestMapping(value = RuleConstants.NOT_LOGIN + "/tradeRefund", method = {RequestMethod.POST, RequestMethod.GET}) @ResponseBody public Boolean tradeRefund(@RequestParam(required = false, name = "outTradeNo") String outTradeNo, @RequestParam(required = false, name = "tradeNo") String tradeNo) { log.info("支付宝-退款信息-outTradeNo:"+outTradeNo+", tradeNo:"+tradeNo); -- Gitblit v1.7.1