燕山石化溯源三维电子沙盘-【后端】-服务
1
13693261870
2023-08-09 ec58306a5e07ec3bac57dffebb3ca8e411807c14
src/main/java/com/yssh/config/ScheduleConfig.java
@@ -44,7 +44,7 @@
   WarningAnalyseService warningAnalyseService;
   @Resource
   XlsExportService xlsExportService;
   XlsReportService xlsReportService;
   @Value("${csv.voc_max}")
   private int vocMax = 96;
@@ -194,7 +194,7 @@
    */
   @Scheduled(cron = "0 1 0 * * ?")
   public void createDayReport() {
      xlsExportService.createDayReport(new Date());
      xlsReportService.createDayReport(new Date());
   }
   /**
@@ -202,7 +202,7 @@
    */
   @Scheduled(cron = "0 5 0 ? * MON")
   public void createWeekReport() {
      xlsExportService.createWeekReport(new Date());
      xlsReportService.createWeekReport(new Date());
   }
   /**
@@ -210,6 +210,6 @@
    */
   @Scheduled(cron = "0 9 0 1 * ?")
   public void createMonthReport() {
      xlsExportService.createMonthReport(new Date());
      xlsReportService.createMonthReport(new Date());
   }
}