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.
// 声明当前文件所在的包路径,表示该文件位于com.dao包下
package com.dao;
// 导入MyBatis Plus框架中的BaseMapper接口
// BaseMapper是MyBatis Plus提供的核心接口,包含基本的CRUD操作方法
import com.baomidou.mybatisplus.mapper.BaseMapper;
// 导入自定义的ConfigEntity实体类
// ConfigEntity通常对应数据库中的配置表,用于存储配置信息
import com.entity.ConfigEntity;
//配置数据访问对象接口,用于对配置相关的数据库操作
public interface ConfigDao extends BaseMapper<ConfigEntity> {
// 继承自MyBatis-Plus的BaseMapper,无需额外编写基本的CRUD方法
}