1
zyy
2026-02-12 e89e71158de719c70c487110a0f8d00d4a30d30b
src/main/java/com/nq/service/impl/UserWithdrawServiceImpl.java
@@ -158,6 +158,7 @@
            userWithdraw.setWithStatus(Integer.valueOf(0));
            BigDecimal withfee = siteSetting.getWithFeePercent().multiply(new BigDecimal(amt)).add(new BigDecimal(siteSetting.getWithFeeSingle().intValue()));
            userWithdraw.setWithFee(withfee);
            log.info(userWithdraw.toString());
            int insertCount = this.userWithdrawMapper.insert(userWithdraw);
            if (insertCount > 0) {
                return ServerResponse.createBySuccessMsg("提现成功",request);