浏览代码

添加会诊结果单走模型

huj 4 年之前
父节点
当前提交
cda94408a6
共有 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

@@ -15,6 +15,7 @@ public class AIAnalyze {
     LeaveHospitalAI leaveHospitalAI = new LeaveHospitalAI();
     ThreeLevelWardAI threeLevelWardAI = new ThreeLevelWardAI();
     OperationAI operationAI = new OperationAI();
+    ConsultationAI consultationAI = new ConsultationAI();
 
     public AIAnalyze(CRFServiceClient crfService, SimilarityServiceClient similarityServiceClient) {
         this.crfServiceClient = crfService;
@@ -27,6 +28,7 @@ public class AIAnalyze {
         leaveHospitalAI.medrec(inputInfo, crfServiceClient);
         threeLevelWardAI.medrec(inputInfo, crfServiceClient);
         operationAI.medrec(inputInfo, crfServiceClient);
+        consultationAI.medrec(inputInfo, crfServiceClient);
     }
 
 }