This commit is contained in:
2025-12-02 13:36:09 +08:00
parent ee6dd64f98
commit 94718edd6b
97 changed files with 570 additions and 579 deletions

View File

@@ -64,11 +64,11 @@ public interface AuthService {
/**
* @description 简单校验 token 是否有效(用于快速判断是否已登录)
* @param token 鉴权 token
* @return ResultDomain<Boolean> true 表示有效/已登录false 表示无效/未登录
* @return ResultDomain<BOOLEAN> true 表示有效/已登录false 表示无效/未登录
* @author yslg
* @since 2025-11-03
*/
ResultDomain<Boolean> isTokenValid(String token);
ResultDomain<BOOLEAN> isTokenValid(String token);
}