ruoyi-service/ruoyi-account/src/main/java/com/ruoyi/account/service/impl/WalletServiceImpl.java
@@ -34,9 +34,6 @@ } Integer vipId = appUser.getVipId(); R<VipSetting> r = remoteVipSettingClient.getVipSettingById(vipId); if (r == null || r.getCode() != R.SUCCESS) { throw new RuntimeException("获取会员设置信息失败"); } VipSetting data = r.getData(); if (data == null) { throw new RuntimeException("会员设置信息为空"); @@ -57,7 +54,7 @@ walletVO.setAuditAmount(waitAuditList.stream() .map(WithdrawalRequests::getWithdrawalAmount) .reduce(BigDecimal.ZERO, BigDecimal::add)); walletVO.setBalance(appUser.getBalance()); return walletVO; }