| | |
| | | package com.oying.modules.hwc.rest; |
| | | |
| | | import com.oying.annotation.rest.AnonymousPostMapping; |
| | | import com.oying.modules.hwc.service.SwiftPassService; |
| | | import com.oying.modules.hwc.service.CallbackService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.RequiredArgsConstructor; |
| | |
| | | @RequestMapping("/api/swiftPass") |
| | | public class SwiftPassController { |
| | | |
| | | private final SwiftPassService swiftPassService; |
| | | private final CallbackService callbackService; |
| | | |
| | | @ApiOperation("HWS支付回调") |
| | | @AnonymousPostMapping(value = "/alipayCallback") |
| | | public void alipayCallback(HttpServletRequest request, HttpServletResponse response) { |
| | | swiftPassService.alipayCallback(request, response); |
| | | callbackService.alipayCallback(request, response); |
| | | } |
| | | |
| | | @ApiOperation("HWS退款回调") |
| | | @AnonymousPostMapping(value = "/returnNotify") |
| | | public void returnNotify(HttpServletRequest request, HttpServletResponse response) { |
| | | swiftPassService.returnNotify(request, response); |
| | | callbackService.returnNotify(request, response); |
| | | } |
| | | } |