| | |
| | | return mallOrderInfoService.refundOrder(id); |
| | | } |
| | | |
| | | @ApiOperation(value = "用户退款--提交退款申请", notes = "用户退款--提交退款申请") |
| | | @PostMapping(value = "/applyRefundOrder") |
| | | public FebsResponse applyRefundOrder(@RequestBody ApplyRefundOrderDto applyRefundOrderDto) { |
| | | return mallOrderInfoService.applyRefundOrder(applyRefundOrderDto); |
| | | } |
| | | |
| | | @ApiOperation(value = "用户退款--取消退款申请", notes = "用户退款--取消退款申请") |
| | | @PostMapping(value = "/cancelRefundOrder/{id}") |
| | | public FebsResponse cancelRefundOrder(@PathVariable("id") Long id) { |
| | | return mallOrderInfoService.cancelRefundOrder(id); |
| | | } |
| | | |
| | | @ApiOperation(value = "提交退款申请", notes = "提交退款申请") |
| | | @PostMapping(value = "/applyRefund") |
| | | public FebsResponse applyRefund(@RequestBody AddRefundDto addRefundDto) { |