| | |
| | | BigDecimal CountTotalRechargeAmountByTime(Integer paramInteger); |
| | | |
| | | List<UserRecharge> exportByAdmin( Integer agentId, Integer userId, String realName, Integer state, String beginTime, String endTime, HttpServletRequest request); |
| | | |
| | | int countPendingRecharge(); |
| | | } |
| | |
| | | ServerResponse queryMyOption(String code, HttpServletRequest request); |
| | | |
| | | ServerResponse getMoenyLog(String type,HttpServletRequest request); |
| | | |
| | | int countPendingAuth(); |
| | | } |
| | |
| | | ServerResponse deleteWithdraw(Integer withdrawId); |
| | | |
| | | List<UserWithdraw> exportByAdmin( Integer agentId, Integer userId, String realName, Integer state, String beginTime, String endTime, HttpServletRequest request); |
| | | |
| | | int countPendingWithdraw(); |
| | | } |
| | |
| | | |
| | | return userRecharges; |
| | | } |
| | | |
| | | @Override |
| | | public int countPendingRecharge() { |
| | | com.baomidou.mybatisplus.core.conditions.query.QueryWrapper<UserRecharge> queryWrapper = new com.baomidou.mybatisplus.core.conditions.query.QueryWrapper<>(); |
| | | queryWrapper.eq("order_status", 0); |
| | | return this.userRechargeMapper.selectCount(queryWrapper).intValue(); |
| | | } |
| | | } |
| | |
| | | return ServerResponse.createBySuccess(mapper.selectList(queryWrapper)); |
| | | } |
| | | |
| | | @Override |
| | | public int countPendingAuth() { |
| | | QueryWrapper<User> queryWrapper = new QueryWrapper<>(); |
| | | queryWrapper.eq("is_active", 1); |
| | | return this.userMapper.selectCount(queryWrapper).intValue(); |
| | | } |
| | | |
| | | } |
| | | |
| | |
| | | |
| | | |
| | | } |
| | | |
| | | @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(); |
| | | } |
| | | } |
| | | |