package cn.lihu.jh.module.system.api.user; import cn.lihu.jh.framework.common.util.collection.CollectionUtils; import cn.lihu.jh.module.system.api.user.dto.AdminUserRespDTO; import java.util.Collection; import java.util.Collections; import java.util.List; import java.util.Map; /** * Admin 用户 API 接口 * * @author 芋道源码 */ public interface AdminUserApi { /** * 通过用户 ID 查询用户 * * @param id 用户ID * @return 用户对象信息 */ AdminUserRespDTO getUser(Long id); /** * 通过用户 ID 查询用户下属 * * @param id 用户编号 * @return 用户下属用户列表 */ List getUserListBySubordinate(Long id); /** * 通过用户 ID 查询用户们 * * @param ids 用户 ID 们 * @return 用户对象信息 */ List getUserList(Collection ids); /** * 获得指定部门的用户数组 * * @param deptIds 部门数组 * @return 用户数组 */ List getUserListByDeptIds(Collection deptIds); /** * 获得指定岗位的用户数组 * * @param postIds 岗位数组 * @return 用户数组 */ List getUserListByPostIds(Collection postIds); /** * 获得用户 Map * * @param ids 用户编号数组 * @return 用户 Map */ default Map getUserMap(Collection ids) { List users = getUserList(ids); return CollectionUtils.convertMap(users, AdminUserRespDTO::getId); } /** * 校验用户是否有效。如下情况,视为无效: * 1. 用户编号不存在 * 2. 用户被禁用 * * @param id 用户编号 */ default void validateUser(Long id) { validateUserList(Collections.singleton(id)); } /** * 校验用户们是否有效。如下情况,视为无效: * 1. 用户编号不存在 * 2. 用户被禁用 * * @param ids 用户编号数组 */ void validateUserList(Collection ids); }