package com.bosshand.virgo.api.job; import com.bosshand.virgo.api.dao.ProjectCityWeatherDao; import com.bosshand.virgo.api.dao.ProjectDao; import com.bosshand.virgo.api.dao.operate.OperateWeeklyCompanyDao; import com.bosshand.virgo.api.dao.operate.OperateWeeklyTypeCompanyDao; import com.bosshand.virgo.api.service.FlowClient; import com.bosshand.virgo.api.service.ManagerClient; import com.bosshand.virgo.api.service.OperateClient; import org.quartz.JobExecutionContext; import org.quartz.JobExecutionException; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.scheduling.quartz.QuartzJobBean; public class JobOperateCompanyQuartz extends QuartzJobBean { @Autowired OperateWeeklyCompanyDao operateWeeklyCompanyDao; @Autowired OperateWeeklyTypeCompanyDao operateWeeklyTypeCompanyDao; @Autowired ProjectDao projectDao; @Autowired ProjectCityWeatherDao projectCityWeatherDao; @Autowired FlowClient flowClient; @Autowired ManagerClient managerClient; @Autowired OperateClient operateClient; @Override protected void executeInternal(JobExecutionContext jobExecutionContext) throws JobExecutionException { } }