You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
593 B
24 lines
593 B
package com.xxl.job.dao;
|
|
|
|
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
|
|
import com.xxl.job.core.model.XxlJobLog;
|
|
|
|
public interface IXxlJobLogDao {
|
|
|
|
public int save(XxlJobLog xxlJobLog);
|
|
|
|
public XxlJobLog load(int id);
|
|
|
|
public int updateTriggerInfo(XxlJobLog xxlJobLog);
|
|
|
|
public int updateHandleInfo(XxlJobLog xxlJobLog);
|
|
|
|
public List<XxlJobLog> pageList(int offset, int pagesize,String jobName, Date triggerTimeStart, Date triggerTimeEnd);
|
|
|
|
public int pageListCount(int offset, int pagesize,String jobName, Date triggerTimeStart, Date triggerTimeEnd);
|
|
|
|
}
|