1
zj
2026-01-15 9e8557ce8e7ab694f21a9386cb61973c4ed31569
src/main/java/com/nq/service/impl/UserWithdrawServiceImpl.java
@@ -413,5 +413,12 @@
    }
    @Override
    public int countPendingWithdraw() {
        com.baomidou.mybatisplus.core.conditions.query.QueryWrapper<UserWithdraw> queryWrapper = new com.baomidou.mybatisplus.core.conditions.query.QueryWrapper<>();
        queryWrapper.eq("with_status", 0);
        return this.userWithdrawMapper.selectCount(queryWrapper).intValue();
    }
}