fuliqi
2024-06-07 a1b0f938832dd36eddc66fe2b92ea32ba26dee7d
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
33
34
35
package com.ycl.jxkg.mapper;
 
import com.ycl.jxkg.domain.entity.ExamTemplate;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ycl.jxkg.domain.query.ExamTemplateQuery;
import com.ycl.jxkg.domain.vo.ExamTemplateVO;
import com.ycl.jxkg.domain.form.ExamTemplateForm;
import java.util.List;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
/**
 * 随机试卷模板 Mapper 接口
 *
 * @author flq
 * @since 2024-06-05
 */
@Mapper
public interface ExamTemplateMapper extends BaseMapper<ExamTemplate> {
 
    /**
     * id查找随机试卷模板
     * @param id
     * @return
     */
    ExamTemplateVO getById(Integer id);
 
    /**
    *  分页
    */
    IPage getPage(IPage page, @Param("query") ExamTemplateQuery query);
 
    void removeById(Integer id);
}