package com.ots.project.monitor.job.mapper; import com.ots.project.monitor.job.domain.JobLog; import java.util.List; public interface JobLogMapper { public List selectJobLogList(JobLog jobLog); public List selectJobLogAll(); public JobLog selectJobLogById(Long jobLogId); public int insertJobLog(JobLog jobLog); public int deleteJobLogByIds(String[] ids); public int deleteJobLogById(Long jobId); public void cleanJobLog(); }