lin
2024-03-22 774c8b2ee14eef5fd10bbd46d85a180e7b19ab21
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));
   }
}