wfansh 5 tháng trước cách đây
mục cha
commit
afdae96f0e

+ 1 - 1
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/dmp/service/impl/GACountryReportServiceImpl.java

@@ -30,7 +30,7 @@ public class GACountryReportServiceImpl extends ServiceImpl<GACountryReportMappe
     @Override
     @Override
     @Cacheable(
     @Cacheable(
             cacheManager = CacheConfig.TTL_CACHE_MANAGER,
             cacheManager = CacheConfig.TTL_CACHE_MANAGER,
-            cacheNames = "getCountryStats" + 60 * 30) // Redis TTL为半小时
+            cacheNames = "getCountryStats#" + 60 * 30) // Redis TTL为半小时
     public List<CountryStatsVO> getCountryStats(String siteCode, Date start, Date end) {
     public List<CountryStatsVO> getCountryStats(String siteCode, Date start, Date end) {
         List<CountryStatsVO> countryStatsVOs =
         List<CountryStatsVO> countryStatsVOs =
                 gaCountryReportMapper.getCountryStats(siteCode, start, end);
                 gaCountryReportMapper.getCountryStats(siteCode, start, end);

+ 1 - 1
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/dmp/service/impl/GADailyReportServiceImpl.java

@@ -45,7 +45,7 @@ public class GADailyReportServiceImpl extends ServiceImpl<GADailyReportMapper, G
     @Override
     @Override
     @Cacheable(
     @Cacheable(
             cacheManager = CacheConfig.TTL_CACHE_MANAGER,
             cacheManager = CacheConfig.TTL_CACHE_MANAGER,
-            cacheNames = "getDailyStatsWithinPeriod" + 60 * 30) // Redis TTL为半小时
+            cacheNames = "getDailyStatsWithinPeriod#" + 60 * 30) // Redis TTL为半小时
     public List<DailyStatsVO> getDailyStatsWithinPeriod(String siteCode, Date start, Date end) {
     public List<DailyStatsVO> getDailyStatsWithinPeriod(String siteCode, Date start, Date end) {
         Map<String, DailyStatsVO> dailyStatsVOs = Maps.newHashMap();
         Map<String, DailyStatsVO> dailyStatsVOs = Maps.newHashMap();
 
 

+ 1 - 1
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/dmp/service/impl/GAPagePathReportServiceImpl.java

@@ -39,7 +39,7 @@ public class GAPagePathReportServiceImpl
     @Override
     @Override
     @Cacheable(
     @Cacheable(
             cacheManager = CacheConfig.TTL_CACHE_MANAGER,
             cacheManager = CacheConfig.TTL_CACHE_MANAGER,
-            cacheNames = "getPagePathStats" + 60 * 30) // Redis TTL为半小时
+            cacheNames = "getPagePathStats#" + 60 * 30) // Redis TTL为半小时
     public List<PagePathStatsVO> getPagePathStats(
     public List<PagePathStatsVO> getPagePathStats(
             String siteCode, Date start, Date end, int limit) {
             String siteCode, Date start, Date end, int limit) {
         List<PagePathStatsVO> pagePathStatsVOs =
         List<PagePathStatsVO> pagePathStatsVOs =

+ 1 - 1
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/dmp/service/impl/GASourceMediumReportServiceImpl.java

@@ -29,7 +29,7 @@ public class GASourceMediumReportServiceImpl
     @Override
     @Override
     @Cacheable(
     @Cacheable(
             cacheManager = CacheConfig.TTL_CACHE_MANAGER,
             cacheManager = CacheConfig.TTL_CACHE_MANAGER,
-            cacheNames = "getSourceMediumStats" + 60 * 30) // Redis TTL为半小时
+            cacheNames = "getSourceMediumStats#" + 60 * 30) // Redis TTL为半小时
     public List<SourceMediumStatsVO> getSourceMediumStats(String siteCode, Date start, Date end) {
     public List<SourceMediumStatsVO> getSourceMediumStats(String siteCode, Date start, Date end) {
         List<SourceMediumStatsVO> sourceMediumStatsVOs =
         List<SourceMediumStatsVO> sourceMediumStatsVOs =
                 gaSourceMediumReportMapper.getSourceMediumStats(siteCode, start, end);
                 gaSourceMediumReportMapper.getSourceMediumStats(siteCode, start, end);