xiangpei
2025-04-18 23da057f35cea1ee061adc23ccb9b7511635133b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.monkeylessey.job.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.monkeylessey.job.domain.entity.SysJob;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * 定时任务表 Mapper 接口
 *
 * @author 向培
 * @since 2022-06-08
 */
@Mapper
public interface SysJobMapper extends BaseMapper<SysJob> {
 
}