RuoYi
2020-11-04 69b6089f6d486c73fd2d22969e5ed9f808a8f6bf
src/main/java/com/ruoyi/common/utils/DictUtils.java
@@ -41,8 +41,8 @@
        Object cacheObj = SpringUtils.getBean(RedisCache.class).getCacheObject(getCacheKey(key));
        if (StringUtils.isNotNull(cacheObj))
        {
            List<SysDictData> DictDatas = StringUtils.cast(cacheObj);
            return DictDatas;
            List<SysDictData> dictDatas = StringUtils.cast(cacheObj);
            return dictDatas;
        }
        return null;
    }