|
@@ -4,6 +4,7 @@ import com.lantone.qc.pub.model.doc.BeHospitalizedDoc;
|
|
|
import com.lantone.qc.pub.model.doc.ClinicalBloodDoc;
|
|
|
import com.lantone.qc.pub.model.doc.ConsultationDoc;
|
|
|
import com.lantone.qc.pub.model.doc.CrisisValueReportDoc;
|
|
|
+import com.lantone.qc.pub.model.doc.CriticallyIllNoticeDoc;
|
|
|
import com.lantone.qc.pub.model.doc.DeathCaseDiscussDoc;
|
|
|
import com.lantone.qc.pub.model.doc.DeathRecordDoc;
|
|
|
import com.lantone.qc.pub.model.doc.DifficultCaseDiscussDoc;
|
|
@@ -14,6 +15,7 @@ import com.lantone.qc.pub.model.doc.NursingSystemDoc;
|
|
|
import com.lantone.qc.pub.model.doc.OperationDiscussionDoc;
|
|
|
import com.lantone.qc.pub.model.doc.PreoperativeDiscussionDoc;
|
|
|
import com.lantone.qc.pub.model.doc.RescueDoc;
|
|
|
+import com.lantone.qc.pub.model.doc.SeriouslyIllNoticeDoc;
|
|
|
import com.lantone.qc.pub.model.doc.ThreeLevelWardDoc;
|
|
|
import com.lantone.qc.pub.model.label.ChiefLabel;
|
|
|
import com.lantone.qc.pub.model.label.DiagLabel;
|
|
@@ -141,6 +143,30 @@ public class ModelDocGenerate {
|
|
|
return consultationDoc;
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 危急值记录
|
|
|
+ *
|
|
|
+ * @param structureMap
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public static CrisisValueReportDoc crisisValueReportDocGen(Map<String, String> structureMap) {
|
|
|
+ CrisisValueReportDoc crisisValueReportDoc = new CrisisValueReportDoc();
|
|
|
+ crisisValueReportDoc.setStructureMap(structureMap);
|
|
|
+ return crisisValueReportDoc;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 病危通知书
|
|
|
+ *
|
|
|
+ * @param structureMap
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public static CriticallyIllNoticeDoc criticallyIllNoticeDocGen(Map<String, String> structureMap) {
|
|
|
+ CriticallyIllNoticeDoc criticallyIllNoticeDoc = new CriticallyIllNoticeDoc();
|
|
|
+ criticallyIllNoticeDoc.setStructureMap(structureMap);
|
|
|
+ return criticallyIllNoticeDoc;
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 死亡病例讨论记录
|
|
|
*
|
|
@@ -274,27 +300,27 @@ public class ModelDocGenerate {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * 查房记录
|
|
|
+ * 病重通知书
|
|
|
*
|
|
|
* @param structureMap
|
|
|
* @return
|
|
|
*/
|
|
|
- public static ThreeLevelWardDoc threeLevelWardDocGen(Map<String, String> structureMap) {
|
|
|
- ThreeLevelWardDoc threeLevelWardDoc = new ThreeLevelWardDoc();
|
|
|
- threeLevelWardDoc.setStructureMap(structureMap);
|
|
|
- return threeLevelWardDoc;
|
|
|
+ public static SeriouslyIllNoticeDoc seriouslyIllNoticeDocGen(Map<String, String> structureMap) {
|
|
|
+ SeriouslyIllNoticeDoc seriouslyIllNoticeDoc = new SeriouslyIllNoticeDoc();
|
|
|
+ seriouslyIllNoticeDoc.setStructureMap(structureMap);
|
|
|
+ return seriouslyIllNoticeDoc;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * 危急值记录
|
|
|
+ * 查房记录
|
|
|
*
|
|
|
* @param structureMap
|
|
|
* @return
|
|
|
*/
|
|
|
- public static CrisisValueReportDoc crisisValueReportDocGen(Map<String, String> structureMap) {
|
|
|
- CrisisValueReportDoc crisisValueReportDoc = new CrisisValueReportDoc();
|
|
|
- crisisValueReportDoc.setStructureMap(structureMap);
|
|
|
- return crisisValueReportDoc;
|
|
|
+ public static ThreeLevelWardDoc threeLevelWardDocGen(Map<String, String> structureMap) {
|
|
|
+ ThreeLevelWardDoc threeLevelWardDoc = new ThreeLevelWardDoc();
|
|
|
+ threeLevelWardDoc.setStructureMap(structureMap);
|
|
|
+ return threeLevelWardDoc;
|
|
|
}
|
|
|
|
|
|
}
|