Browse Source

接入三级查房AI处理

hujing 5 năm trước cách đây
mục cha
commit
31fd441a82

+ 2 - 0
kernel/src/main/java/com/lantone/qc/kernel/structure/ai/AIAnalyze.java

@@ -14,6 +14,7 @@ public class AIAnalyze {
     BeHospitalizedAI beHospitalizedAI = new BeHospitalizedAI();
     FirstCourseRecordAI firstCourseRecordAI = new FirstCourseRecordAI();
     LeaveHospitalAI leaveHospitalAI = new LeaveHospitalAI();
+    ThreeLevelWardAI threeLevelWardAI = new ThreeLevelWardAI();
 
     public AIAnalyze(CRFServiceClient crfService) {
         this.crfServiceClient = crfService;
@@ -23,6 +24,7 @@ public class AIAnalyze {
         beHospitalizedAI.medrec(inputInfo, crfServiceClient);
         firstCourseRecordAI.medrec(inputInfo, crfServiceClient);
         leaveHospitalAI.medrec(inputInfo, crfServiceClient);
+        threeLevelWardAI.medrec(inputInfo, crfServiceClient);
     }