|
@@ -119,6 +119,12 @@ public class AIV2Facade {
|
|
|
throw new CommonException(CommonErrorCode.SERVER_IS_ERROR, "推理结果为空");
|
|
|
}
|
|
|
|
|
|
+ //过滤科室为空的数据
|
|
|
+ featureRateList=featureRateList
|
|
|
+ .stream()
|
|
|
+ .filter(i->StringUtil.isNotBlank(i.getConcatDept()))
|
|
|
+ .collect(Collectors.toList());
|
|
|
+
|
|
|
List<SYFFeatureDTO> syfFeatureDTOList = featureRateList
|
|
|
.stream()
|
|
|
.filter(i -> StringUtil.isNotBlank(i.getConcatDept()))
|