huangzhen
2023-09-19 da2a873cceac0df9bb4944754d3c1f34ec554047
1
2
3
4
5
6
7
8
9
10
11
package com.gkhy.exam.coalmine.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.gkhy.exam.coalmine.entity.CmStaffExam;
import org.springframework.stereotype.Repository;
import org.apache.ibatis.annotations.Mapper;
 
@Mapper
public interface CmStaffExamMapper extends BaseMapper<CmStaffExam> {
 
}