|
@@ -1005,7 +1005,7 @@ public class DiagnoseFacade extends DiagnoseServiceImpl {
|
|
diagnoseSearchVO.setTypeList(typeList);
|
|
diagnoseSearchVO.setTypeList(typeList);
|
|
if (ListUtil.isNotEmpty(typeList)) {
|
|
if (ListUtil.isNotEmpty(typeList)) {
|
|
List<LibraryInfo> libraryInfoList = this.search(diagnoseSearchVO);
|
|
List<LibraryInfo> libraryInfoList = this.search(diagnoseSearchVO);
|
|
- res = libraryInfoList.stream().map(row -> row.getName()).collect(Collectors.toList());
|
|
|
|
|
|
+ res = libraryInfoList.stream().map(row -> row.getName()).distinct().collect(Collectors.toList());
|
|
}
|
|
}
|
|
return res;
|
|
return res;
|
|
}
|
|
}
|