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

tgtools.quartz.explorer.dao.TaskDao Maven / Gradle / Ivy

The newest version!
package tgtools.quartz.explorer.dao;

import tgtools.quartz.explorer.entity.TaskDO;

import java.util.List;
import java.util.Map;

/**
 * 
 * @author chglee
 * @email [email protected]
 * @date 2017-10-03 15:45:42
 */
//@Mapper
public interface TaskDao {

	TaskDO get(Long id);

	List list(Map map);

	int count(Map map);

	int save(TaskDO task);

	int update(TaskDO task);

	int remove(Long id);

	int batchRemove(Long[] ids);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy