|
@@ -124,7 +124,9 @@ public class PushFacade {
|
|
//诊断 返回tagName+标签
|
|
//诊断 返回tagName+标签
|
|
if (featureTypeSet.contains(String.valueOf(QuestionTypeEnum.Disease.getKey()))) {
|
|
if (featureTypeSet.contains(String.valueOf(QuestionTypeEnum.Disease.getKey()))) {
|
|
disMap = getTagByMap(disMap, pushVO, QuestionTypeEnum.Disease.getKey());
|
|
disMap = getTagByMap(disMap, pushVO, QuestionTypeEnum.Disease.getKey());
|
|
- pushDTO.setDisMap(disMap);
|
|
|
|
|
|
+ Map<String, Map<String, Object>> disMapDTO = new LinkedHashMap<>();
|
|
|
|
+ disMapDTO.put("疑似诊断:", disMap);
|
|
|
|
+ pushDTO.setDisMap(disMapDTO);
|
|
}
|
|
}
|
|
//症状(主诉 type=1;现病史 type=2) 返回 tagName+填写单
|
|
//症状(主诉 type=1;现病史 type=2) 返回 tagName+填写单
|
|
if (featureTypeSet.contains(String.valueOf(QuestionTypeEnum.Symptom.getKey()))) {
|
|
if (featureTypeSet.contains(String.valueOf(QuestionTypeEnum.Symptom.getKey()))) {
|