| | |
| | | R<Map<String, Object>> orderPay(@RequestBody PaymentOrder paymentOrder); |
| | | |
| | | |
| | | /** |
| | | * 支付回调 |
| | | * @param request |
| | | * @return |
| | | */ |
| | | @PostMapping("/wx/pay/notify") |
| | | R<Map<String, Object>> payNotify(HttpServletRequest request); |
| | | |
| | | /** |
| | | * 支付回调成功后的成功应答 |
| | | */ |
| | | @PostMapping("/wx/pay/ack") |
| | | void ack(); |
| | | |
| | | |
| | | /** |
| | | * 关闭订单 |
| | |
| | | |
| | | @ApiOperation("订单退款") |
| | | @PostMapping(value = "/wx/refundOrderR") |
| | | public R<String> refundOrderR(@RequestBody WxPaymentRefundModel model); |
| | | |
| | | |
| | | |
| | | @ApiOperation("订单退款回调") |
| | | @PostMapping(value = "/wx/refund/notify") |
| | | R<WxRefundNotifyResp> refundNotify(HttpServletRequest request); |
| | | R<Map<String, Object>> refundOrderR(@RequestBody WxPaymentRefundModel model); |
| | | } |