|
@@ -328,7 +328,7 @@ public class CommonAnalysisUtil {
|
|
|
htmlText = htmlText.replaceAll("[ ]", " ");
|
|
|
String date = extractDate(htmlText);
|
|
|
if (date != null) {
|
|
|
- structureMap.put("查房日期", date);
|
|
|
+ structureMap.put("病历日期", date);
|
|
|
htmlText = htmlText.replace(date, "").trim();
|
|
|
}
|
|
|
List<String> titleContent = Lists.newArrayList(htmlText.split(" "));
|
|
@@ -341,7 +341,7 @@ public class CommonAnalysisUtil {
|
|
|
for (String text : titleContent) {
|
|
|
sb.append(text).append(" ");
|
|
|
}
|
|
|
- structureMap.put("病情记录", sb.toString());
|
|
|
+ structureMap.put("病历内容", sb.toString());
|
|
|
}
|
|
|
}
|
|
|
}
|