system.service.sys.SysTaskJobService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of task Show documentation
Show all versions of task Show documentation
jishi series products task on java
The newest version!
package system.service.sys;
import framework.base.BaseService;
import framework.vo.ResultList;
import system.entity.SysTaskJob;
import system.task.vo.SysTaskRunning;
import java.util.Date;
import java.util.List;
public interface SysTaskJobService extends BaseService {
int updateByName(SysTaskJob param);
SysTaskRunning loadInfo(Long id);
ResultList loadRunning(SysTaskJob param, Integer pageIndex, Integer pageSize);
List loadTriggerTimes(String name, int size, Date afterTime);
}