田源
2023-08-08 4097158a48f86181c7c01ab0f8f52c3b8ef6ed6b
Source/UBCS/ubcs-service-api/ubcs-dict-api/src/main/java/com/vci/ubcs/system/cache/DictBizCache.java
@@ -110,7 +110,7 @@
    */
   public static String getValue(String code, String dictKey) {
      String keyPrefix = DICT_VALUE.concat(StringPool.DASH).concat(AuthUtil.getTenantId()).concat(StringPool.COLON);
      return CacheUtil.get(DICT_CACHE, keyPrefix + code + StringPool.COLON, dictKey, () -> {
      return CacheUtil.get(DICT_CACHE+"Biz", keyPrefix + code + StringPool.COLON, dictKey, () -> {
         R<String> result = getDictClient().getValue(code, dictKey);
         return result.getData();
      });