mirror of
https://gitee.com/dromara/RuoYi-Vue-Plus.git
synced 2026-03-14 01:50:53 +08:00
14 lines
277 B
Java
14 lines
277 B
Java
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> {
|
|
|
|
}
|