|
@@ -72,6 +72,12 @@ public class PaymentController {
|
|
|
public ResultContent refund(@PathVariable("goodsId") String goodsId) {
|
|
|
return paymentServer.refundIntervene(goodsId);
|
|
|
}
|
|
|
+ @ApiOperation("平台退款")
|
|
|
+ @ResourceAuth(value = AuthConstant.SuperAdmin, type = AuthType.Platform)
|
|
|
+ @RequestMapping(value = "platformRefund", method = RequestMethod.POST)
|
|
|
+ public ResultContent platformRefund(@RequestBody RefundParam2Model refundParam2Model) {
|
|
|
+ return paymentServer.platformRefund(refundParam2Model);
|
|
|
+ }
|
|
|
|
|
|
|
|
|
@ApiOperation("取消退款")
|