gongfuzhu 1 year ago
parent
commit
99be64f5e1

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

@@ -130,7 +130,7 @@ public class PaymentController {
     @ResourceAuth(value = "admin", type = AuthType.Project)
     @RequestMapping(value = "account/withdrawals", method = RequestMethod.POST)
     public ResultContent withdrawals(@RequestBody ApplyWithdrawalsModel applyWithdrawalsModel) {
-        return paymentServer.applicationWithdrawals(applyWithdrawalsModel);
+        return paymentServer.applicationShopWithdrawals(applyWithdrawalsModel);
     }
 
     @ApiOperation("平台_提现按钮")

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

@@ -123,7 +123,7 @@ public class PaymentService {
         return paymentService2.getDetail(channel.name());
     }
 
-    public ResultContent applicationWithdrawals(ApplyWithdrawalsModel applyWithdrawalsModel) {
+    public ResultContent applicationShopWithdrawals(ApplyWithdrawalsModel applyWithdrawalsModel) {
         applyWithdrawalsModel.setShopId(authHelper.getEnterPriseId());
         applyWithdrawalsModel.setPlatform(false);
         return paymentService2.applicationWithdrawals(applyWithdrawalsModel);