Commit e22a923d authored by shiyu's avatar shiyu

拍卖中标签查询分页问题修复

parent 0f29f66d
......@@ -210,6 +210,8 @@ public class CollectionItemsRelationServiceImpl implements CollectionItemsRelati
AuctionConfigRequestDto auctionConfigRequestDto = new AuctionConfigRequestDto();
auctionConfigRequestDto.setCreatorId(targetUserId);
auctionConfigRequestDto.setState(AuctionEnum.StateEnum.AUCTIONING.getCode());
auctionConfigRequestDto.setLimit(dto.getLimit());
auctionConfigRequestDto.setPage(dto.getPage());
List<AuctionConfig> auctionConfigList = auctionConfigDao.findList(auctionConfigRequestDto);
pageInfo = new PageInfo<>(auctionConfigList);
List<Long> itemIds = auctionConfigList.stream().map(AuctionConfig::getItemId).collect(Collectors.toList());
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment