chenshudong месяцев назад: 3
Родитель
Сommit
6f533dd9d1

+ 8 - 1
airport-admin/src/main/java/com/sundot/airport/web/controller/cache/StatisticsCacheController.java

@@ -22,7 +22,14 @@ public class StatisticsCacheController extends BaseController {
22
     @PostMapping("/clearStatistics")
22
     @PostMapping("/clearStatistics")
23
     @CacheEvict(value = {
23
     @CacheEvict(value = {
24
             "statistics_data",
24
             "statistics_data",
25
-            "statistics_list"
25
+            "statistics_list",
26
+            "item_station",
27
+            "item_ranking_detail",
28
+            "item_duration",
29
+            "item_seizure_trend",
30
+            "attendance_station",
31
+            "attendance_open_trend",
32
+            "base_module_info",
26
     }, allEntries = true)
33
     }, allEntries = true)
27
     public AjaxResult clearStatisticsCache() {
34
     public AjaxResult clearStatisticsCache() {
28
         return AjaxResult.success("统计缓存清理成功");
35
         return AjaxResult.success("统计缓存清理成功");