教育训练处考试制证系统后端
zf
2023-09-14 704ea6024361970e2c99f21c12d0f0d88d0f1942
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.gkhy.exam.noncoalmine.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.gkhy.exam.noncoalmine.entity.ExamSite;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
 
/**
 * (ExamSite)表数据库访问层
 *
 * @author makejava
 * @since 2023-09-13 16:11:10
 */
@Repository
@Mapper
public interface ExamSiteMapper extends BaseMapper<ExamSite> {
 
}