浏览代码

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