| | |
| | | import org.springblade.modules.system.entity.UserInfo; |
| | | import org.springblade.modules.system.entity.UserOauth; |
| | | 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.UserVO; |
| | | import org.springblade.modules.system.vo.UsersVo; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * 服务类 |
| | |
| | | * @return |
| | | */ |
| | | IPage<User> selectUserPages(IPage<User> page, User user, String deptId); |
| | | /** |
| | | * 自定义分页(带坐标) |
| | | * |
| | | * @param page |
| | | * @param user |
| | | * @param deptId |
| | | * @param |
| | | * @return |
| | | */ |
| | | IPage<User> selectUserPagetxl(IPage<User> page, User user, String deptId); |
| | | |
| | | /** |
| | | * 自定义分页 |
| | |
| | | */ |
| | | boolean updateUserInfos(User user); |
| | | |
| | | R<Boolean> saveUser(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 selectCount(String account); |
| | | } |