|
@@ -1,5 +1,8 @@
|
|
|
package com.lantone.qc.pub.model.doc;
|
|
|
|
|
|
+import com.lantone.qc.pub.model.doc.ward.AttendingDoctorWardDoc;
|
|
|
+import com.lantone.qc.pub.model.doc.ward.DirectorDoctorWardDoc;
|
|
|
+import com.lantone.qc.pub.model.doc.ward.GeneralDoctorWardDoc;
|
|
|
import com.lantone.qc.pub.model.label.ThreeLevelWardLabel;
|
|
|
import lombok.Getter;
|
|
|
import lombok.Setter;
|
|
@@ -16,5 +19,10 @@ import java.util.List;
|
|
|
@Getter
|
|
|
@Setter
|
|
|
public class ThreeLevelWardDoc extends ModelDoc {
|
|
|
- private List<ThreeLevelWardLabel> threeLevelWardLabel = new ArrayList<>();
|
|
|
+ //主任医师查房
|
|
|
+ private List<DirectorDoctorWardDoc> directorDoctorWardDocs = new ArrayList<>();
|
|
|
+ //主治医师查房
|
|
|
+ private List<AttendingDoctorWardDoc> attendingDoctorWardDocs = new ArrayList<>();
|
|
|
+ //普通医师查房
|
|
|
+ private List<GeneralDoctorWardDoc> generalDoctorWardDoc = new ArrayList<>();
|
|
|
}
|