@@ -1,5 +1,6 @@
package com.lantone.qc.kernel.web.controller;
+import com.google.common.collect.Lists;
import com.lantone.qc.kernel.analysis.QCAnalysis;
import com.lantone.qc.pub.jdbc.MysqlJdbc;
import com.lantone.qc.pub.model.OutputInfo;
@@ -121,6 +122,9 @@ public class QCTestController {
Map<String, Object> content = new HashMap<>();
content.put("content", textList.get(i));
medrecVo.setContent(content);
+ if (caseList.get(i).equals("入院记录")){
+ medrecVo.setLabel(Lists.newArrayList("姓名", "性别", "年龄", "民族", "职业", "出生地", "婚姻", "联系地址", "病史陈述者", "出生日期", "户口地址", "电话", "入院日期", "记录日期", "主诉", "现病史", "既往史", "个人史", "婚育史", "月经史", "家族史", "体格检查(一)", "体格检查(二)", "辅助检查", "初步诊断", "修正诊断", "医师签名", "补充诊断"));
+ }
List<MedrecVo> medrec = new ArrayList<>();