gongfuzhu 11 місяців тому
батько
коміт
99b205b6ae

+ 0 - 7
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/controller/PaymentController.java

@@ -72,13 +72,6 @@ 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("取消退款")
     @ResourceAuth(value = "user", type = AuthType.User)

+ 0 - 4
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/service/PaymentService.java

@@ -94,10 +94,6 @@ public class PaymentService {
         return paymentService2.refundIntervene(userId,goodsId);
     }
 
-    public ResultContent platformRefund(RefundParam2Model refundParam2Model) {
-        return paymentService2.platformRefund(refundParam2Model);
-    }
-
 
     public ResultContent unRefund(ApplicantRefundParam2Model applicantRefundParam2Model) {
         String userId = authHelper.getCurrentUser().getUserId();