pull/1121/head
梁宇奇 2025-09-02 16:25:45 +08:00
parent 9b87981516
commit c1e62d2b1f
1 changed files with 2 additions and 1 deletions

View File

@ -1097,7 +1097,8 @@ public class XktTask {
Map<String, Integer> iscMap = redisCache.getCacheMap(CacheConstants.PRODUCT_STATISTICS_IMG_SEARCH_COUNT);
Map<String, Integer> vcMap = redisCache.getCacheMap(CacheConstants.PRODUCT_STATISTICS_VIEW_COUNT);
Map<String, Integer> dcMap = redisCache.getCacheMap(CacheConstants.PRODUCT_STATISTICS_DOWNLOAD_COUNT);
Set<String> storeProdIds = MapUtil.emptyIfNull(iscMap).keySet();
Set<String> storeProdIds = new HashSet<>();
storeProdIds.addAll(MapUtil.emptyIfNull(iscMap).keySet());
storeProdIds.addAll(MapUtil.emptyIfNull(vcMap).keySet());
storeProdIds.addAll(MapUtil.emptyIfNull(dcMap).keySet());
Date now = new Date();