| | |
| | | import org.springblade.modules.system.excel.UserExcel; |
| | | import org.springblade.modules.system.node.TreeNode; |
| | | import org.springblade.modules.system.vo.UserVO; |
| | | import org.springblade.modules.zc.entity.Zc; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | * @param tenantId |
| | | * @return |
| | | */ |
| | | IPage<User> selectUserPage(IPage<User> page, User user, Long deptId, String tenantId); |
| | | IPage<UserVO> selectUserPage(IPage<UserVO> page, User user, Long deptId, String tenantId); |
| | | |
| | | /** |
| | | * 自定义分页 |
| | |
| | | * @param isCovered |
| | | * @return |
| | | */ |
| | | void importUser(List<UserExcel> data, Boolean isCovered); |
| | | void importUser(List<UserExcel> data, Boolean isCovered,String deptId); |
| | | |
| | | /** |
| | | * 导出用户数据 |
| | |
| | | * @return |
| | | */ |
| | | UserVO getUserDetails(User user); |
| | | List<Map<String, Object>> seleL(String type,String deptid,String jurisdiction,Long userId); |
| | | |
| | | /** |
| | | * 查询账号相同的用户数量 |
| | | * @param account |
| | | * @return |
| | | */ |
| | | Integer selectCount(String account); |
| | | |
| | | /** |
| | | * 查询用户表中未删除,未离职的用户信息 |
| | | * @param username |
| | | * @return |
| | | */ |
| | | User getUserInfo(String username); |
| | | } |