| | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springblade.modules.system.excel.UserExcel; |
| | | import org.springblade.modules.system.entity.User; |
| | | import org.springblade.modules.system.excel.UserExcel; |
| | | import org.springblade.modules.system.vo.UserDistrictStatisVO; |
| | | import org.springblade.modules.system.vo.UserRegisterStatisVO; |
| | | import org.springblade.modules.system.vo.UsersVo; |
| | | |
| | | import java.util.List; |
| | |
| | | */ |
| | | List<UsersVo> selectSecurityUserPageList(IPage<UsersVo> page, User user); |
| | | List<Map<String, Object>> selectUser(); |
| | | |
| | | /** |
| | | * 统计用户注册数据 |
| | | * @return |
| | | */ |
| | | List<UserRegisterStatisVO> getUserRegisterStatisticsData(); |
| | | |
| | | |
| | | List<UserRegisterStatisVO> getUserTypeCount(); |
| | | |
| | | List<UserDistrictStatisVO> getUserDistrictTypeCount(); |
| | | |
| | | /** |
| | | * 查询用户数据,未删除的,未审核的 |
| | | * @return |
| | | */ |
| | | List<User> getNotAuditAllUserList(); |
| | | |
| | | |
| | | /** |
| | | * 查询账号相同的用户数量 |
| | | * @param account |
| | | * @return |
| | | */ |
| | | Integer selectCountAccount(@Param("account") String account); |
| | | |
| | | } |