kongzy
2024-10-12 3402a6cdef63a87cf046a8bbfdc2898bb842c93f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.gkhy.exam.institutionalaccess.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.gkhy.exam.institutionalaccess.entity.ThCert;
import com.gkhy.exam.institutionalaccess.model.query.ThCertQuery;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
@Mapper
public interface ThCertMapper extends BaseMapper<ThCert> {
    /**
     * 分页查询课时
     * @param query
     * @return
     */
    List<ThCert> listByPage(ThCertQuery query);
}