|
@@ -36,8 +36,8 @@ public class OperationAI extends ModelAI {
|
|
|
public static String entityRelationObject = "entity_relation_object";
|
|
|
public static String outputs = "outputs";
|
|
|
public static String content = "content";
|
|
|
- public static List<String> discussionKey = Lists.newArrayList("术前诊断", "术中后诊断", "手术名称", "麻醉方式"
|
|
|
- , "手术简要经过", "目前情况", "术后注意事项");
|
|
|
+ public static List<String> discussionKey = Lists.newArrayList("术前诊断", "术中诊断", "术中后诊断", "手术名称", "麻醉方式"
|
|
|
+ , "手术经过", "手术简要经过", "目前情况", "术后注意事项");
|
|
|
|
|
|
public void medrec(InputInfo inputInfo, CRFServiceClient crfServiceClient) {
|
|
|
JSONArray crfContent = new JSONArray();
|
|
@@ -47,7 +47,7 @@ public class OperationAI extends ModelAI {
|
|
|
OperationRecordDoc operationRecordDoc = operationDocs.get(i).getOperationRecordDoc();
|
|
|
Map<String, String> structureMap = operationRecordDoc.getStructureMap();
|
|
|
//存放抓取的药品
|
|
|
- String content = CatalogueUtil.structureMapJoin(structureMap, Lists.newArrayList("手术经过及处理", "手术中用药(化疗等药物)"));
|
|
|
+ String content = CatalogueUtil.structureMapJoin(structureMap, Lists.newArrayList("手术经过", "手术经过及处理", "手术中用药(化疗等药物)"));
|
|
|
putContent(crfContent, medicalTextType.get(1), content, "手术记录" + i + "药物");
|
|
|
}
|
|
|
if (operationDocs.get(i).getOperationDiscussionDoc() != null) {
|