|
@@ -308,7 +308,7 @@ public class ArticleCategoryService {
|
|
|
crawlerContentList.addAll(aigcBaseMapper.getCrawlerContentByChannelContentIdIn(partition));
|
|
crawlerContentList.addAll(aigcBaseMapper.getCrawlerContentByChannelContentIdIn(partition));
|
|
|
}
|
|
}
|
|
|
Map<String, CrawlerContent> crawlerContentMap = crawlerContentList.stream()
|
|
Map<String, CrawlerContent> crawlerContentMap = crawlerContentList.stream()
|
|
|
- .collect(Collectors.toMap(CrawlerContent::getChannelContentId, Function.identity()));
|
|
|
|
|
|
|
+ .collect(Collectors.toMap(CrawlerContent::getChannelContentId, Function.identity(), (a, b) -> a));
|
|
|
long now = System.currentTimeMillis();
|
|
long now = System.currentTimeMillis();
|
|
|
List<ArticleCategory> saveList = new ArrayList<>();
|
|
List<ArticleCategory> saveList = new ArrayList<>();
|
|
|
for (ProduceContentCrawlerVO vo : list) {
|
|
for (ProduceContentCrawlerVO vo : list) {
|