master:bug修改;

pull/1121/head
liujiang 2025-08-16 00:05:40 +08:00
parent 2b65bd2944
commit 05f4216235
1 changed files with 1 additions and 1 deletions

View File

@ -749,7 +749,7 @@ public class WebsitePCServiceImpl implements IWebsitePCService {
return new ArrayList<>();
}
Map<Long, Store> storeMap = this.storeMapper.selectList(new LambdaQueryWrapper<Store>().eq(Store::getDelFlag, Constants.UNDELETED)
.eq(Store::getId, oneMonthList.stream().map(AdvertRound::getStoreId).collect(Collectors.toList())))
.in(Store::getId, oneMonthList.stream().map(AdvertRound::getStoreId).collect(Collectors.toList())))
.stream().collect(Collectors.toMap(Store::getId, Function.identity()));
List<AdvertRound> launchingList = oneMonthList.stream().filter(x -> Objects.equals(x.getLaunchStatus(), AdLaunchStatus.LAUNCHING.getValue()))
.filter(x -> Objects.equals(x.getBiddingStatus(), AdBiddingStatus.BIDDING_SUCCESS.getValue())).collect(Collectors.toList());