|
@@ -144,7 +144,7 @@ public class PushFacade {
|
|
|
//诊断 map
|
|
|
if (featureTypeSet.contains(String.valueOf(FeatureTypeEnum.Feature_Type_Disease.getKey()))) {
|
|
|
if (ListUtil.isNotEmpty(dis)) {
|
|
|
- List<String> nameList = dis.stream().map(featureRate -> featureRate.getFeatureName()).collect(Collectors.toList());
|
|
|
+ List<String> nameList = dis.stream().map(featureRate -> featureRate.getFeatureName()).distinct().collect(Collectors.toList());
|
|
|
Map<String, List<ConceptPushDTO>> disMapDTO = new LinkedHashMap<>();
|
|
|
Map<String, List<FeatureRate>> disFeatureMap = new LinkedHashMap<>();
|
|
|
//警惕
|