ruoyi-common/src/main/java/com/ruoyi/common/helper/LoginHelper.java
@@ -118,4 +118,19 @@ return UserType.getUserType(loginId); } /** * 是否为管理员 * * @param userId 用户ID * @return 结果 */ public static boolean isAdmin(Long userId) { return userId != null && 1L == userId; } public static boolean isAdmin() { Long userId = getUserId(); return userId != null && 1L == userId; } }