All Downloads are FREE. Search and download functionalities are using the official Maven repository.

system.service.sys.SysTaskJobService Maven / Gradle / Ivy

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy