package incheon.com.batch;

import incheon.ags.ias.cntn.cntnStats.service.CntnStatsService;
import lombok.extern.slf4j.Slf4j;
import org.quartz.Job;
import org.quartz.JobExecutionContext;
import org.quartz.JobExecutionException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

@Slf4j
@Component
public class FirstBatch implements Job {
    @Autowired
    private CntnStatsService webLogService;

    @Override
    public void execute(JobExecutionContext context) throws JobExecutionException {
        try {
        } catch (Exception e) {
            throw new JobExecutionException(e);
        }
    }
}
