|
|
@@ -526,8 +526,8 @@ public class FsCourseTrafficLogServiceImpl implements IFsCourseTrafficLogService
|
|
|
|
|
|
@Override
|
|
|
public void batchDelTraffic() {
|
|
|
- // 设置删除的时间条件(2025-09-01之前)
|
|
|
- LocalDate targetLocalDate = LocalDate.of(2025, 12, 1);
|
|
|
+ // 设置删除的时间条件:三个月之前
|
|
|
+ LocalDate targetLocalDate = LocalDate.now().minusMonths(3).withDayOfMonth(1);
|
|
|
Date targetDate = Date.from(targetLocalDate.atStartOfDay(ZoneId.systemDefault()).toInstant());
|
|
|
|
|
|
int batchSize = 5000; // 每批次处理数量
|