1
zj
2026-01-14 afb9b1cefb1c2d2f57fe8f0f3c19efa354669c66
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();
    }
}