zrj
2024-06-13 d8dced9058b1949609a14519523cbe47199f459e
blade-auth/src/main/java/org/springblade/common/cache/SysCache.java
@@ -229,7 +229,8 @@
    * @return Role
    */
   public static Role getRole(Long id) {
      return CacheUtil.get(SYS_CACHE, ROLE_ID, id, () -> roleService.getById(id));
//      return CacheUtil.get(SYS_CACHE, ROLE_ID, id, () -> roleService.getById(id));
      return roleService.getById(id);
   }
   /**