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.
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.user.mapper ;
/**
* 导入 MyBatis-Plus 框架的核心接口 BaseMapper。
* BaseMapper 提供了一系列通用的数据库 CRUD 操作方法,
* 继承该接口可以减少重复编写基础数据库操作代码的工作量。
*/
import com.baomidou.mybatisplus.core.mapper.BaseMapper ;
/**
* 导入系统用户实体类 SysUser。
* 该实体类用于封装系统用户的相关属性,
* 作为当前 Mapper 接口操作的对象类型。
*/
import com.yf.exam.modules.sys.user.entity.SysUser ;
/**
* <p>
* 管理用户Mapper接口, 用于与数据库中管理用户相关的数据表进行交互。
* 继承自 MyBatis-Plus 的 BaseMapper 接口,可直接使用其提供的通用数据库操作方法。
* </p>
*
* @author 聪明笨狗
* @since 2020-04-13 16:57
*/
public interface SysUserMapper extends BaseMapper < SysUser > {
// 目前该接口仅继承 BaseMapper 的通用方法,未自定义额外的数据库操作方法
}