fix(task): 修改景区统计数据统计时间

- 移除旧的定时任务配置 (0 0 3 * * *)
- 更新为新的定时任务配置 (0 1 0 * * *),每天凌晨执行
This commit is contained in:
2026-02-05 18:45:59 +08:00
parent b6141d9381
commit 2489f5464a

View File

@@ -60,7 +60,6 @@ public class ScenicStatsTask {
}); });
} }
} }
@Scheduled(cron = "0 0 3 * * *")
@Scheduled(cron = "0 1 0 * * *") @Scheduled(cron = "0 1 0 * * *")
public void countScenicStats() { public void countScenicStats() {
log.info("开始执行景区统计任务,统计前7天至昨天的数据"); log.info("开始执行景区统计任务,统计前7天至昨天的数据");