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