JobOperateCompanyQuartz.java 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package com.bosshand.virgo.api.job;
  2. import com.bosshand.virgo.api.dao.ProjectCityWeatherDao;
  3. import com.bosshand.virgo.api.dao.ProjectDao;
  4. import com.bosshand.virgo.api.dao.operate.OperateWeeklyCompanyDao;
  5. import com.bosshand.virgo.api.dao.operate.OperateWeeklyTypeCompanyDao;
  6. import com.bosshand.virgo.api.service.FlowClient;
  7. import com.bosshand.virgo.api.service.ManagerClient;
  8. import com.bosshand.virgo.api.service.OperateClient;
  9. import org.quartz.JobExecutionContext;
  10. import org.quartz.JobExecutionException;
  11. import org.springframework.beans.factory.annotation.Autowired;
  12. import org.springframework.scheduling.quartz.QuartzJobBean;
  13. public class JobOperateCompanyQuartz extends QuartzJobBean {
  14. @Autowired
  15. OperateWeeklyCompanyDao operateWeeklyCompanyDao;
  16. @Autowired
  17. OperateWeeklyTypeCompanyDao operateWeeklyTypeCompanyDao;
  18. @Autowired
  19. ProjectDao projectDao;
  20. @Autowired
  21. ProjectCityWeatherDao projectCityWeatherDao;
  22. @Autowired
  23. FlowClient flowClient;
  24. @Autowired
  25. ManagerClient managerClient;
  26. @Autowired
  27. OperateClient operateClient;
  28. @Override
  29. protected void executeInternal(JobExecutionContext jobExecutionContext) throws JobExecutionException {
  30. }
  31. }