admin
2020-09-24 ca1ad791b7b7b04e57db6bd4fb93f0c1066a9f99
fanli/src/main/java/com/yeshi/fanli/controller/client/v2/ConvertLinkController.java
@@ -71,8 +71,8 @@
      Gson gson = JsonUtil.getApiCommonGson();
      data.put("list", gson.toJson(list));
      data.put("tip", configService.get(ConfigKeyEnum.convertDocTip.getKey()));
      data.put("helpLink", configService.get(ConfigKeyEnum.convertDocHelpLink.getKey()));
      data.put("tip", configService.getValue(ConfigKeyEnum.convertDocTip.getKey(),acceptData.getSystem()));
      data.put("helpLink", configService.getValue(ConfigKeyEnum.convertDocHelpLink.getKey(),acceptData.getSystem()));
      String text = redisManager.getCommonString(RedisKeyEnum.convertLinkDocTemp.getKey() + uid);
      if (text != null) {
@@ -243,7 +243,7 @@
      try {
         String key = RedisKeyEnum.convertLinkDocResultTemp.getKey() + uid + "-"
               + StringUtil.Md5(UUID.randomUUID().toString());
         String result = convertLinkManager.convertLinkFromText(text, uid, true);
         String result = convertLinkManager.convertLinkFromText(text, uid, true,true);
         redisManager.cacheCommonString(key, result, 60);
         JSONObject data = new JSONObject();
         data.put("id", key);