|
@@ -254,8 +254,9 @@ public class RecommendService {
|
|
|
if (CollectionUtils.isEmpty(filterContentList)) {
|
|
|
return;
|
|
|
}
|
|
|
+ Long updateTimestamp = System.currentTimeMillis();
|
|
|
List<String> contentIds = filterContentList.stream().map(ArticleSortResponseDataItem::getId).collect(Collectors.toList());
|
|
|
- longArticleBaseMapper.updatePublishContentGzhWaitingStatusByIds(contentIds, 0);
|
|
|
+ longArticleBaseMapper.updatePublishContentGzhWaitingStatusByIds(contentIds, 0, updateTimestamp);
|
|
|
}
|
|
|
|
|
|
public RecommendParam genRecommendParam(RecommendRequest request, String abCode) {
|