|
@@ -1,5 +1,6 @@
|
|
|
package com.lantone.qc.trans.changx;
|
|
|
|
|
|
+import com.google.common.collect.Maps;
|
|
|
import com.lantone.qc.pub.model.doc.BeHospitalizedDoc;
|
|
|
import com.lantone.qc.pub.model.keys.ModelStandardKeys;
|
|
|
import com.lantone.qc.pub.model.vo.MedrecVo;
|
|
@@ -40,7 +41,10 @@ public class ChangxBeHospitalizedDocTrans extends ModelDocTrans {
|
|
|
content
|
|
|
);
|
|
|
|
|
|
- Map<String, Object> pageData = (Map) structureMap;
|
|
|
+ Map<String, Object> pageData = Maps.newHashMap();
|
|
|
+ structureMap.keySet().forEach(i -> {
|
|
|
+ pageData.put(i, structureMap.get(i));
|
|
|
+ });
|
|
|
|
|
|
structureMap.put("体格检查", structureMap.get("体格检查(一)"));
|
|
|
structureMap.put("专科体格检查", structureMap.get("体格检查(二)"));
|