فهرست منبع

接入三级查房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);
     }