|
@@ -1,44 +1,51 @@
|
|
|
package com.lantone.qc.kernel.catalogue.behospitalized;
|
|
|
|
|
|
+import com.lantone.qc.dbanaly.lt.entity.Clinic;
|
|
|
+import com.lantone.qc.dbanaly.lt.facade.ClinicFacade;
|
|
|
import com.lantone.qc.kernel.catalogue.QCCatalogue;
|
|
|
import com.lantone.qc.pub.model.InputInfo;
|
|
|
import com.lantone.qc.pub.model.OutputInfo;
|
|
|
import com.lantone.qc.pub.model.entity.Clinical;
|
|
|
-import com.lantone.qc.pub.model.entity.General;
|
|
|
-import com.lantone.qc.pub.model.entity.GeneralDesc;
|
|
|
import com.lantone.qc.pub.model.entity.Modification;
|
|
|
+import com.lantone.qc.pub.util.StringUtil;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
-import java.util.ArrayList;
|
|
|
import java.util.List;
|
|
|
|
|
|
-
|
|
|
/**
|
|
|
* @ClassName : BEH0021
|
|
|
* @Description : 现病史症状缺少加剧情况
|
|
|
- * crf模型中只标注趋势,需要用词库去配出哪些是加剧情况。
|
|
|
+ * crf模型中只标注趋势,需要用词库去配出哪些是加剧情况。
|
|
|
* @Author : 楼辉荣
|
|
|
* @Date: 2020-03-06 17:28
|
|
|
*/
|
|
|
@Component
|
|
|
public class BEH0021 extends QCCatalogue {
|
|
|
+ @Autowired
|
|
|
+ private ClinicFacade clinicFacade;
|
|
|
+
|
|
|
public void start(InputInfo inputInfo, OutputInfo outputInfo) {
|
|
|
- if(inputInfo.getBeHospitalizedDoc() == null){
|
|
|
- status.set("0");
|
|
|
+ status.set("0");
|
|
|
+ if (inputInfo.getBeHospitalizedDoc() == null || inputInfo.getBeHospitalizedDoc().getPresentLabel() == null) {
|
|
|
return;
|
|
|
}
|
|
|
- List<General> gens = inputInfo.getBeHospitalizedDoc().getPresentLabel().getGens();
|
|
|
- List<GeneralDesc> generals = inputInfo.getBeHospitalizedDoc().getPresentLabel().getGenerals();
|
|
|
List<Clinical> clinicals = inputInfo.getBeHospitalizedDoc().getPresentLabel().getClinicals();
|
|
|
- if(clinicals.size()>0){
|
|
|
+ if (clinicals.size() > 0) {
|
|
|
Clinical clinical = clinicals.get(0);
|
|
|
- Modification modification = clinical.getModification();
|
|
|
- if(modification == null || (!modification.getName().contains("严重") && !modification.getName().contains("加剧")
|
|
|
- && !modification.getName().contains("加重"))){
|
|
|
- info.set(clinical.getName());
|
|
|
- }else {
|
|
|
- status.set("0");
|
|
|
+ String clinicalName = clinical.getName();
|
|
|
+ if (StringUtil.isNotBlank(clinicalName)) {
|
|
|
+ Clinic clinic = clinicFacade.getClinicMap().get(clinicalName);
|
|
|
+ if (clinic != null && clinic.getHasAggravate() == 1) {
|
|
|
+ Modification modification = clinical.getModification();
|
|
|
+ if (modification == null || (!modification.getName().contains("严重") && !modification.getName().contains("加剧")
|
|
|
+ && !modification.getName().contains("加重"))) {
|
|
|
+ status.set("-1");
|
|
|
+ info.set(clinicalName);
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
}
|