BUGFIX:系统模特上传;

This commit is contained in:
shahaibo
2023-10-04 16:22:46 +08:00
parent 4068a64c54
commit 7daa3dc004

View File

@@ -122,7 +122,7 @@ public class LibraryServiceImpl extends ServiceImpl<LibraryMapper, Library> impl
.collect(Collectors.toList());
List<LibraryModelPointVO> libraryModelPointVOS = libraryModelPointService.selectByLibraryIds(libarayIds);
if(!CollectionUtils.isEmpty(libraryModelPointVOS)){
map = libraryModelPointVOS.stream().collect(Collectors.toMap(LibraryModelPointVO::getLibraryId,v ->v));
map = libraryModelPointVOS.stream().collect(Collectors.toMap(LibraryModelPointVO::getRelationId,v ->v));
}
}
Map<Long, LibraryModelPointVO> finalMap = map;