Преглед на файлове

接入三级查房AI处理

hujing преди 5 години
родител
ревизия
31fd441a82
променени са 1 файла, в които са добавени 2 реда и са изтрити 0 реда
  1. 2 0
      kernel/src/main/java/com/lantone/qc/kernel/structure/ai/AIAnalyze.java

+ 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);
     }