xiangpei
2024-11-21 a72d576376ca0fe6a10dba392f40d392992e22f9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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);
 
}