|
|
@ -3,12 +3,11 @@ package com.zc.business.controller; |
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
|
|
|
import com.ruoyi.common.utils.spring.SpringUtils; |
|
|
|
import com.zc.business.domain.OdsTollEtctuData; |
|
|
|
import com.zc.business.service.IDcWarningService; |
|
|
|
import com.zc.business.service.IOdsTollEnpassDataService; |
|
|
|
import com.zc.business.service.IOdsTollEtctuDataService; |
|
|
|
import com.zc.business.service.IOdsTollExpassDataService; |
|
|
|
import com.zc.business.service.*; |
|
|
|
import org.springframework.scheduling.annotation.Scheduled; |
|
|
|
import org.springframework.stereotype.Component; |
|
|
|
|
|
|
|
import java.time.format.DateTimeFormatter; |
|
|
|
import java.util.Date; |
|
|
|
|
|
|
|
import javax.annotation.Resource; |
|
|
@ -34,4 +33,41 @@ public class GantryTimingController { |
|
|
|
boolean remove3 = iOdsTollEnpassDataService.removeGantry(); |
|
|
|
System.out.println("清除数据:"+remove+": "+remove2+": "+remove3); |
|
|
|
} |
|
|
|
//设备在线汇总数据统计 清除数据30天前数据
|
|
|
|
public void deviceOnlineSumData(){ |
|
|
|
// 获取当前日期时间
|
|
|
|
LocalDateTime now = LocalDateTime.now(); |
|
|
|
// 获取30天前的日期时间
|
|
|
|
LocalDateTime thirtyDaysAgo = now.minusDays(30); |
|
|
|
// 定义日期时间格式
|
|
|
|
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"); |
|
|
|
// 格式化30天前的时间
|
|
|
|
String thirtyDaysAgoFormatted = thirtyDaysAgo.format(formatter); |
|
|
|
IOnlineSumService IOnlineSumService = SpringUtils.getBean(IOnlineSumService.class); |
|
|
|
|
|
|
|
boolean remove = IOnlineSumService.remove(thirtyDaysAgoFormatted); |
|
|
|
System.out.println("清除设备在线汇总数据:"+remove); |
|
|
|
//设备在线日志数据统计
|
|
|
|
IOnlineLogService IOnlineLogService = SpringUtils.getBean(IOnlineLogService.class); |
|
|
|
boolean remove3 = IOnlineLogService.remove(thirtyDaysAgoFormatted); |
|
|
|
System.out.println("清除设备在线日志数据:"+remove3); |
|
|
|
} |
|
|
|
//路况信息 保留两天
|
|
|
|
public void roadConditionInformation(){ |
|
|
|
// 获取当前日期时间
|
|
|
|
LocalDateTime now = LocalDateTime.now(); |
|
|
|
// 获取30天前的日期时间
|
|
|
|
LocalDateTime thirtyDaysAgo = now.minusDays(3); |
|
|
|
// 定义日期时间格式
|
|
|
|
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"); |
|
|
|
// 格式化30天前的时间
|
|
|
|
String thirtyDaysAgoFormatted = thirtyDaysAgo.format(formatter); |
|
|
|
IDcRoadConditionInformationService iDcRoadConditionInformationService = SpringUtils.getBean(IDcRoadConditionInformationService.class); |
|
|
|
|
|
|
|
boolean remove = iDcRoadConditionInformationService.remove(thirtyDaysAgoFormatted); |
|
|
|
System.out.println("清除数据 路况信息 保留三天:"+remove); |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|