AutoArrangeExamJob.java 506 B

12345678910111213141516171819
  1. package com.qmth.exam.reserve.job;
  2. import org.springframework.beans.factory.annotation.Autowired;
  3. import org.springframework.scheduling.annotation.Scheduled;
  4. import org.springframework.stereotype.Service;
  5. import com.qmth.exam.reserve.service.StudentApplyService;
  6. @Service
  7. public class AutoArrangeExamJob {
  8. @Autowired
  9. private StudentApplyService studentApplyService;
  10. @Scheduled(cron = "0 0 1 * * ?")
  11. public void autoArrangeExam() {
  12. studentApplyService.autoLayout(null);
  13. }
  14. }