|
@@ -432,7 +432,7 @@ public class BilletHotsendChangeShiftController extends JeecgController<BilletHo
|
|
|
}
|
|
|
|
|
|
|
|
|
- @Scheduled(cron = "0 1 0 * * ?")
|
|
|
+ @Scheduled(cron = "0 5 0 * * ?")
|
|
|
public void runAtMidnight() {
|
|
|
// 每天 00:00:05 执行的任务逻辑
|
|
|
|
|
@@ -454,7 +454,7 @@ public class BilletHotsendChangeShiftController extends JeecgController<BilletHo
|
|
|
executeShiftTask88();
|
|
|
}
|
|
|
|
|
|
- @Scheduled(cron = "0 1 8 * * ?")
|
|
|
+ @Scheduled(cron = "0 5 8 * * ?")
|
|
|
public void runAtEight() {
|
|
|
// 08:05:00 执行的任务逻辑
|
|
|
|
|
@@ -476,7 +476,7 @@ public class BilletHotsendChangeShiftController extends JeecgController<BilletHo
|
|
|
executeShiftTask88();
|
|
|
}
|
|
|
|
|
|
- @Scheduled(cron = "0 1 16 * * ?")
|
|
|
+ @Scheduled(cron = "0 5 16 * * ?")
|
|
|
public void runAtFourPm() {
|
|
|
// 16:00:05 执行的任务逻辑
|
|
|
|