mirror of
https://github.com/dromara/RuoYi-Vue-Plus.git
synced 2025-09-24 07:19:46 +08:00
14 lines
265 B
Java
14 lines
265 B
Java
package com.ruoyi.quartz.mapper;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.ruoyi.quartz.domain.SysJob;
|
|
|
|
/**
|
|
* 调度任务信息 数据层
|
|
*
|
|
* @author ruoyi
|
|
*/
|
|
public interface SysJobMapper extends BaseMapper<SysJob> {
|
|
|
|
}
|