zhongrj
2024-05-29 a5fac95408a43ad43de9d88c30d06c0918c7bc8f
src/main/java/org/springblade/common/cache/DictBizCache.java
@@ -110,7 +110,7 @@
    */
   public static List<DictBiz> getList(String code) {
      String keyPrefix = DICT_LIST.concat(StringPool.DASH).concat(AuthUtil.getTenantId()).concat(StringPool.COLON);
      return CacheUtil.get(DICT_CACHE, keyPrefix, code, () -> dictService.getList(code));
      return CacheUtil.get(DICT_CACHE, keyPrefix, code, () -> dictService.getList(code,null));
   }
}