PollutionWarningSchedule.java 777 B

123456789101112131415161718192021222324252627282930
  1. package com.shanghaichengdi.schedule;
  2. import com.shanghaichengdi.service.IBoatPollutionWarningService;
  3. import org.springframework.scheduling.annotation.Scheduled;
  4. import org.springframework.stereotype.Component;
  5. import javax.annotation.Resource;
  6. /**
  7. * @ClassName PollutionWarningSchedule
  8. * @Author Tevin
  9. * @DATE 2024/12/24 10:50
  10. * @Description TODO
  11. **/
  12. @Component
  13. public class PollutionWarningSchedule {
  14. @Resource
  15. private IBoatPollutionWarningService boatPollutionWarningService;
  16. @Scheduled(fixedRate = 10 * 60 * 1000)
  17. public void ShortBarge() {
  18. boatPollutionWarningService.handleShortBarge();
  19. }
  20. @Scheduled(fixedRate = 10 * 60 * 1000)
  21. public void OrdinaryShip() {
  22. boatPollutionWarningService.handleOrdinaryShip();
  23. }
  24. }