| | |
| | | import org.quartz.JobExecutionContext; |
| | | import org.quartz.JobExecutionException; |
| | | import org.springframework.beans.BeanUtils; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import javax.annotation.Resource; |
| | | import java.util.ArrayList; |
| | | import java.util.HashMap; |
| | | import java.util.List; |
| | |
| | | @Service(Constant.JOB_BEAN_LAMP) |
| | | public class JobLampService implements Job { |
| | | |
| | | @Autowired |
| | | @Resource |
| | | private LampManager lampManager; |
| | | @Autowired |
| | | @Resource |
| | | private CoreDeviceService coreDeviceService; |
| | | |
| | | @Override |