|
@@ -18,6 +18,7 @@ public class PretreatmentRule {
|
|
|
//患者基本信息 性别 年龄 婚姻
|
|
|
if (!StringUtils.isEmpty(searchData.getNormal())) {
|
|
|
add2PreResultList(new PretreatmentNormal(), searchData.getNormal(), "normal", searchData);
|
|
|
+ add2PreResultList(new PretreatmentNormal(), searchData.getMarriage(), "normal", searchData);
|
|
|
}
|
|
|
//症状规则 主诉、现病史提取
|
|
|
if (!StringUtils.isEmpty(searchData.getChief())) {
|
|
@@ -29,6 +30,7 @@ public class PretreatmentRule {
|
|
|
add2PreResultList(new PretreatmentAllergy(), searchData.getSymptom(), "allergy", searchData); //过敏史
|
|
|
add2PreResultList(new PretreatmentSymptom(), searchData.getSymptom(), "symptom", searchData); //症状
|
|
|
add2PreResultList(new PretreatmentInfectious(), searchData.getSymptom(), "infectious", searchData); //传染病史
|
|
|
+ add2PreResultList(new PretreatmentPacs(), searchData.getSymptom(), "pacs", searchData); //检查
|
|
|
}
|
|
|
//体征数据 体征、现病史提取
|
|
|
if (!StringUtils.isEmpty(searchData.getVital())) {
|