|
|
@@ -151,7 +151,7 @@ public class MarketEmailsServiceImpl extends MyBaseServiceImpl<MarketEmailsMappe
|
|
|
List<Long> sopDetailIdList = marketingCampaignSopDetailEntityList.stream()
|
|
|
.map(MarketingCampaignSopDetailEntity::getSopDetailId)
|
|
|
.collect(Collectors.toList());
|
|
|
- List<SopDetailEntity> sopDetailEntityList = sopDetailService.listByIds(sopDetailIdList).stream().toList();
|
|
|
+ List<SopDetailEntity> sopDetailEntityList = sopDetailService.listByIds(sopDetailIdList).stream().collect(Collectors.toList());
|
|
|
// 1. 查询营销关联的客户基础信息
|
|
|
LambdaQueryWrapper<CustomerBaseEntity> customerBaseWrapper = new LambdaQueryWrapper<>();
|
|
|
customerBaseWrapper.eq(CustomerBaseEntity::getMarketingCampaignId, marketingCampaignEntity.getId());
|