|
@@ -552,6 +552,14 @@ public class ConceptFacade extends ConceptServiceImpl {
|
|
getConceptInfoDTO.setDeptId(disease.getDeptId());
|
|
getConceptInfoDTO.setDeptId(disease.getDeptId());
|
|
getConceptInfoDTO.setClassify(disease.getClassify());
|
|
getConceptInfoDTO.setClassify(disease.getClassify());
|
|
}
|
|
}
|
|
|
|
+ } else if (LexiconTypeEnum.SYMPTOM.getKey() == concept.getLibType().intValue()) {
|
|
|
|
+ KlSymptom klSymptom = klSymptomFacade.getOne(new QueryWrapper<KlSymptom>()
|
|
|
|
+ .eq("concept_id", concept.getId())
|
|
|
|
+ .eq("is_deleted", IsDeleteEnum.N.getKey()), false);
|
|
|
|
+ if (klSymptom != null) {
|
|
|
|
+ getConceptInfoDTO.setDescription(klSymptom.getDescription());
|
|
|
|
+ getConceptInfoDTO.setExplains(klSymptom.getExplains());
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
return getConceptInfoDTO;
|
|
return getConceptInfoDTO;
|