疯狂的狮子li
2022-02-11 61e2a07ee2709d6eb9144ec069ef7229bd8ee398
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;
    }
}