|
@@ -9,6 +9,7 @@ import org.jeecg.modules.adweb.dmp.mapper.GASourceMediumReportMapper;
|
|
|
import org.jeecg.modules.adweb.dmp.service.IGASourceMediumReportService;
|
|
|
import org.jeecg.modules.adweb.dmp.vo.report.SourceMediumStatsVO;
|
|
|
import org.jeecg.modules.redis.CacheConfig;
|
|
|
+import org.jeecg.modules.redis.TTLCacheManager;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.cache.annotation.Cacheable;
|
|
|
import org.springframework.stereotype.Service;
|
|
@@ -29,7 +30,10 @@ public class GASourceMediumReportServiceImpl
|
|
|
@Override
|
|
|
@Cacheable(
|
|
|
cacheManager = CacheConfig.TTL_CACHE_MANAGER,
|
|
|
- cacheNames = "getSourceMediumStats#" + 60 * 30) // Redis TTL为半小时
|
|
|
+ cacheNames =
|
|
|
+ "getSourceMediumStats"
|
|
|
+ + TTLCacheManager.TTL_SPLITTER
|
|
|
+ + 60 * 30) // Redis TTL为半小时
|
|
|
public List<SourceMediumStatsVO> getSourceMediumStats(String siteCode, Date start, Date end) {
|
|
|
List<SourceMediumStatsVO> sourceMediumStatsVOs =
|
|
|
gaSourceMediumReportMapper.getSourceMediumStats(siteCode, start, end);
|