src/main/java/com/zy/asrs/task/LogClearScheduler.java
@@ -30,7 +30,7 @@ // @Scheduled(cron = "0/1 * * * * ? ") @Scheduled(cron = "* * 0 * * ? ") private void apiLogExecute(){ LocalDateTime oneMonthAgo = LocalDateTime.now().minus(1, ChronoUnit.MONTHS); LocalDateTime oneMonthAgo = LocalDateTime.now().minus(1, ChronoUnit.YEARS); List<ApiLog> apiLogs = apiLogService.selectList(new EntityWrapper<ApiLog>().lt("create_time", oneMonthAgo)); for(ApiLog apiLog : apiLogs){ ReturnT<String> returnT = logClearHandler.startClearApiLog(apiLog);