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