|
|
@@ -1,5 +1,6 @@
|
|
|
package com.kym.miniapp.controller;
|
|
|
|
|
|
+import cn.dev33.satoken.annotation.SaIgnore;
|
|
|
import cn.dev33.satoken.stp.StpUtil;
|
|
|
import com.kym.common.R;
|
|
|
import com.kym.common.annotation.ApiLog;
|
|
|
@@ -40,6 +41,7 @@ public class PaymentController {
|
|
|
|
|
|
@ApiLog(value = "微信回调", ignoreParams = true)
|
|
|
@SneakyThrows
|
|
|
+ @SaIgnore
|
|
|
@PostMapping("/notify")
|
|
|
ResponseEntity<Object> notify(HttpServletRequest request) {
|
|
|
return wxPayService.wxNotify(request);
|
|
|
@@ -55,6 +57,7 @@ public class PaymentController {
|
|
|
}
|
|
|
|
|
|
@ApiLog(value = "微信退款回调", ignoreParams = true)
|
|
|
+ @SaIgnore
|
|
|
@PostMapping("/refundNotify")
|
|
|
ResponseEntity<Object> refundNotify(HttpServletRequest request) {
|
|
|
return wxPayService.wxRefundNotify(request);
|