zrj
2024-06-06 477c18f08b2918f24f56d4e082146cdd35b0264c
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);
   }
   /**