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.

67 lines
1.5 KiB

6 years ago
package com.ruoyi.quartz.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
6 years ago
import com.ruoyi.quartz.domain.SysJobLog;
import java.util.List;
6 years ago
/**
*
*
* @author ruoyi
*/
public interface SysJobLogMapper extends BaseMapper<SysJobLog>
6 years ago
{
/**
* quartz
*
* @param jobLog
* @return
*/
public List<SysJobLog> selectJobLogList(SysJobLog jobLog);
/**
*
*
* @return
*/
public List<SysJobLog> selectJobLogAll();
/**
* ID
*
* @param jobLogId ID
* @return
*/
public SysJobLog selectJobLogById(Long jobLogId);
/**
*
*
* @param jobLog
* @return
*/
public int insertJobLog(SysJobLog jobLog);
/**
*
*
* @param logIds ID
* @return
*/
public int deleteJobLogByIds(Long[] logIds);
/**
*
*
* @param jobId ID
* @return
*/
public int deleteJobLogById(Long jobId);
/**
*
*/
public void cleanJobLog();
}