haogh 1 year ago
parent
commit
15090b51ba
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main/java/com/qmth/exam/reserve/job/AutoArrangeExamJob.java

+ 1 - 1
src/main/java/com/qmth/exam/reserve/job/AutoArrangeExamJob.java

@@ -12,7 +12,7 @@ public class AutoArrangeExamJob {
     @Autowired
     private StudentApplyService studentApplyService;
 
-    @Scheduled(cron = "0 0 10 * * ?")
+    @Scheduled(cron = "0 0 1 * * ?")
     public void autoArrangeExam() {
         studentApplyService.autoLayout(null);
     }