package com.hnct.business.mapper;
|
|
import com.hnct.business.domain.entity.Test;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.hnct.business.domain.query.TestQuery;
|
import com.hnct.business.domain.vo.TestVO;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
|
/**
|
* 定时任务调度表 Mapper 接口
|
*
|
* @author xp
|
* @since 2024-10-08
|
*/
|
@Mapper
|
public interface TestMapper extends BaseMapper<Test> {
|
|
/**
|
* id查找定时任务调度表
|
* @param id
|
* @return
|
*/
|
TestVO getById(Integer id);
|
|
/**
|
* 分页
|
*/
|
IPage getPage(IPage page, @Param("query") TestQuery query);
|
|
}
|