[修改] 保密到期定时任务

This commit is contained in:
bupengxiang
2023-05-16 09:44:26 +08:00
parent c1958b2c4e
commit b860961095
@@ -2,6 +2,7 @@ package com.adc.da.report.Timer;
import com.adc.da.report.dao.mysql.ReportDao;
import com.adc.da.report.eo.ReportEntity;
import com.adc.da.report.service.impl.IReportServiceImpl;
import com.adc.da.util.utils.CollectionUtils;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
@@ -25,7 +26,11 @@ public class secrecyDDLTimer {
@Autowired
ReportDao reportDao;
@Autowired
IReportServiceImpl iReportService;
// @Scheduled(cron="0 0 0 * * *")
// @Scheduled(cron="0 0/1 * * * ?")
@Scheduled(cron="0 0/10 * * * ?")
public void timingOpen() {
log.info("**********************保密到期定时任务开始**********************");
@@ -34,6 +39,7 @@ public class secrecyDDLTimer {
entity.forEach(e -> {
e.setConfidentialLevel("公开(内部公开)");
});
iReportService.updateBatchById(entity);
}
log.info("**********************保密到期定时任务结束**********************");
}