|
@@ -43,8 +43,8 @@ public class PaymentController {
|
|
|
@ApiLog(value = "微信回调", ignoreParams = true)
|
|
@ApiLog(value = "微信回调", ignoreParams = true)
|
|
|
@SneakyThrows
|
|
@SneakyThrows
|
|
|
@PostMapping("/notify")
|
|
@PostMapping("/notify")
|
|
|
- ResponseEntity.BodyBuilder notify(HttpServletRequest request, HttpServletResponse response) {
|
|
|
|
|
- return wxPayService.wxNotify(request);
|
|
|
|
|
|
|
+ ResponseEntity<Object> notify(HttpServletRequest request) {
|
|
|
|
|
+ return wxPayService.wxNotify(request);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|