初始化
This commit is contained in:
@ -0,0 +1,13 @@
|
||||
package com.ruoyi.quartz.mapper;
|
||||
|
||||
import com.ruoyi.common.core.mybatisplus.core.BaseMapperPlus;
|
||||
import com.ruoyi.quartz.domain.SysJobLog;
|
||||
|
||||
/**
|
||||
* 调度任务日志信息 数据层
|
||||
*
|
||||
* @author ruoyi
|
||||
*/
|
||||
public interface SysJobLogMapper extends BaseMapperPlus<SysJobLog> {
|
||||
|
||||
}
|
||||
@ -0,0 +1,13 @@
|
||||
package com.ruoyi.quartz.mapper;
|
||||
|
||||
import com.ruoyi.common.core.mybatisplus.core.BaseMapperPlus;
|
||||
import com.ruoyi.quartz.domain.SysJob;
|
||||
|
||||
/**
|
||||
* 调度任务信息 数据层
|
||||
*
|
||||
* @author ruoyi
|
||||
*/
|
||||
public interface SysJobMapper extends BaseMapperPlus<SysJob> {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user