|
@@ -14,6 +14,7 @@ public class AIAnalyze {
|
|
BeHospitalizedAI beHospitalizedAI = new BeHospitalizedAI();
|
|
BeHospitalizedAI beHospitalizedAI = new BeHospitalizedAI();
|
|
FirstCourseRecordAI firstCourseRecordAI = new FirstCourseRecordAI();
|
|
FirstCourseRecordAI firstCourseRecordAI = new FirstCourseRecordAI();
|
|
LeaveHospitalAI leaveHospitalAI = new LeaveHospitalAI();
|
|
LeaveHospitalAI leaveHospitalAI = new LeaveHospitalAI();
|
|
|
|
+ ThreeLevelWardAI threeLevelWardAI = new ThreeLevelWardAI();
|
|
|
|
|
|
public AIAnalyze(CRFServiceClient crfService) {
|
|
public AIAnalyze(CRFServiceClient crfService) {
|
|
this.crfServiceClient = crfService;
|
|
this.crfServiceClient = crfService;
|
|
@@ -23,6 +24,7 @@ public class AIAnalyze {
|
|
beHospitalizedAI.medrec(inputInfo, crfServiceClient);
|
|
beHospitalizedAI.medrec(inputInfo, crfServiceClient);
|
|
firstCourseRecordAI.medrec(inputInfo, crfServiceClient);
|
|
firstCourseRecordAI.medrec(inputInfo, crfServiceClient);
|
|
leaveHospitalAI.medrec(inputInfo, crfServiceClient);
|
|
leaveHospitalAI.medrec(inputInfo, crfServiceClient);
|
|
|
|
+ threeLevelWardAI.medrec(inputInfo, crfServiceClient);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|