package com.gkhy.exam.noncoalmine.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.gkhy.exam.noncoalmine.entity.NcCert;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.springframework.stereotype.Repository;
|
|
/**
|
* (NcCert)表数据库访问层
|
*
|
* @author makejava
|
* @since 2023-09-15 17:14:35
|
*/
|
@Repository
|
@Mapper
|
public interface NcCertMapper extends BaseMapper<NcCert> {
|
|
}
|