自动化立体仓库 - WMS系统
1
zhang
昨天 51f6b1ae7c10506910a09c7926429e19949e8421
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);