diff --git a/core/src/main/java/top/dcenter/ums/security/core/api/service/UmsUserDetailsService.java b/core/src/main/java/top/dcenter/ums/security/core/api/service/UmsUserDetailsService.java index c1e98e9b3dd72a92e2b5cb4a106b61362c3121ac..b8143b1f29cc2d44052079c1b9965dae154ed5c9 100644 --- a/core/src/main/java/top/dcenter/ums/security/core/api/service/UmsUserDetailsService.java +++ b/core/src/main/java/top/dcenter/ums/security/core/api/service/UmsUserDetailsService.java @@ -48,14 +48,14 @@ public interface UmsUserDetailsService extends UserDetailsService, UserDetailsRe * @throws UsernameNotFoundException 没有此 userId 的用户 */ UserDetails loadUserByUserId(String userId) throws UsernameNotFoundException; - + /** - * 在本地账户中检查是否存在 userIds, userIds 为本地账户的 userIds - * @param userIds userId 为本地账户的 userId - * @return userIds 是否存在的列表(true 表示存在), 与传入的 userIds 顺序一一对应 - * @throws UsernameNotFoundException 没有此 userId 的用户 + * 在本地账户中检查是否存在 usernames, usernames 为本地账户的 usernames + * @param usernames usernames 为本地账户的 username + * @return usernames 是否存在的列表(true 表示存在), 与传入的 usernames 顺序一一对应 + * @throws UsernameNotFoundException 没有此 username 的用户 */ - List existedByUserIds(String... userIds) throws UsernameNotFoundException; + List existedByUserIds(String... usernames) throws UsernameNotFoundException; /** * 生成一个用户 id. 预留接口, 默认生成一个不带 "-" 的 UUID