Selaa lähdekoodia

1、出院小结增加注意事项、主诉、医嘱对象信息

louhr 5 vuotta sitten
vanhempi
commit
f655aefb3c

+ 6 - 0
public/src/main/java/com/lantone/qc/pub/model/doc/LeaveHospitalDoc.java

@@ -1,5 +1,8 @@
 package com.lantone.qc.pub.model.doc;
 
+import com.lantone.qc.pub.model.label.ChiefLabel;
+import com.lantone.qc.pub.model.label.DoctorAdviceLabel;
+import com.lantone.qc.pub.model.label.NoticeLabel;
 import lombok.Getter;
 import lombok.Setter;
 
@@ -17,4 +20,7 @@ import java.util.Map;
 public class LeaveHospitalDoc {
     //出院小结所有结构化信息存储
     private Map<String, String> structureMap = new HashMap<>();
+    private ChiefLabel chiefLabel;  //主诉
+    private NoticeLabel noticeLabel;//注意事项
+    private DoctorAdviceLabel doctorAdviceLabel;//医嘱
 }

+ 15 - 0
public/src/main/java/com/lantone/qc/pub/model/label/DoctorAdviceLabel.java

@@ -0,0 +1,15 @@
+package com.lantone.qc.pub.model.label;
+
+import lombok.Getter;
+import lombok.Setter;
+
+/**
+ * @ClassName : DoctorAdvice
+ * @Description : 医嘱
+ * @Author : 楼辉荣
+ * @Date: 2020-03-17 14:44
+ */
+@Getter
+@Setter
+public class DoctorAdviceLabel extends GeneralLabel {
+}

+ 15 - 0
public/src/main/java/com/lantone/qc/pub/model/label/NoticeLabel.java

@@ -0,0 +1,15 @@
+package com.lantone.qc.pub.model.label;
+
+import lombok.Getter;
+import lombok.Setter;
+
+/**
+ * @ClassName : NoticeLabel
+ * @Description : 注意事项,主要出现在出院小结
+ * @Author : 楼辉荣
+ * @Date: 2020-03-17 14:42
+ */
+@Setter
+@Getter
+public class NoticeLabel extends GeneralLabel {
+}