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.
gym/ConfigDao.java

17 lines
676 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.

// 声明当前文件所在的包路径表示该文件位于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方法
}