TASK:模块化;

This commit is contained in:
shahaibo
2025-04-09 10:30:25 +08:00
parent 4cda43f3b5
commit 1089f37022

View File

@@ -166,6 +166,8 @@ public class LibraryServiceImpl extends ServiceImpl<LibraryMapper, Library> impl
Set<Long> collect = brandRelLibraryMapper.selectList(qw).stream().map(BrandRelLibrary::getLibraryId).collect(Collectors.toSet());
if (!CollectionUtils.isEmpty(collect)) {
queryWrapper.in("id", collect);
}else {
return PageBaseResponse.success(new Page<>());
}
}