| | |
| | | package org.springblade.modules.system.service.impl; |
| | | |
| | | |
| | | import com.baomidou.dynamic.datasource.annotation.DS; |
| | | import com.baomidou.mybatisplus.core.conditions.Wrapper; |
| | | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | |
| | | import org.springblade.modules.system.service.IUserDeptService; |
| | | import org.springblade.modules.system.service.IUserOauthService; |
| | | import org.springblade.modules.system.service.IUserService; |
| | | import org.springblade.modules.system.vo.UserDistrictStatisVO; |
| | | import org.springblade.modules.system.vo.UserRegisterStatisVO; |
| | | import org.springblade.modules.system.vo.UserVO; |
| | | import org.springblade.modules.system.vo.UsersVo; |
| | | import org.springblade.modules.system.wrapper.UserWrapper; |
| | |
| | | return baseMapper.selectUser(); |
| | | } |
| | | |
| | | /** |
| | | * 统计用户注册数据 |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<UserRegisterStatisVO> getUserRegisterStatisticsData() { |
| | | return baseMapper.getUserRegisterStatisticsData(); |
| | | } |
| | | |
| | | |
| | | @Override |
| | | public List<UserRegisterStatisVO> getUserTypeCount() { |
| | | return baseMapper.getUserTypeCount(); |
| | | } |
| | | |
| | | @Override |
| | | public List<UserDistrictStatisVO> getUserDistrictTypeCount() { |
| | | return baseMapper.getUserDistrictTypeCount(); |
| | | } |
| | | |
| | | /** |
| | | * 查询用户数据,未删除的,未审核的 |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<User> getNotAuditAllUserList() { |
| | | return baseMapper.getNotAuditAllUserList(); |
| | | } |
| | | |
| | | /** |
| | | * 查询账号相同的用户数量 |
| | | * |
| | | * @param account |
| | | * @return |
| | | */ |
| | | @Override |
| | | public Integer selectCount(String account) { |
| | | return baseMapper.selectCountAccount(account); |
| | | } |
| | | |
| | | } |