You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
exam/sys/config/mapper/SysConfigMapper.java

26 lines
847 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/**
* 定义包名,表明该类所在的模块和目录结构,此包为系统配置模块的映射器包
*/
package com.yf.exam.modules.sys.config.mapper;
/**
* 导入 MyBatis-Plus 框架的 BaseMapper 接口,用于提供基本的数据库操作方法
*/
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* 导入系统配置实体类,该实体类对应数据库中的系统配置表
*/
import com.yf.exam.modules.sys.config.entity.SysConfig;
/**
* <p>
* 通用配置Mapper用于与数据库中的系统配置表进行交互继承自 BaseMapper 可使用其提供的基础 CRUD 操作
* </p>
*
* @author 聪明笨狗
* @since 2020-04-17 09:12
*/
public interface SysConfigMapper extends BaseMapper<SysConfig> {
// 该接口目前未自定义额外的数据库操作方法,可根据需求在此添加
}