zrj
2024-07-03 0b1e9e70818f0e3eb32dd6c029d42d93236ecdc6
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));
   }
}