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.user.book.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.yf.exam.modules.user.book.entity.UserBook;
/**
* <p>
* 错题本Mapper接口,用于与数据库中错题本相关表进行数据交互。
* 该接口继承自MyBatis-Plus的BaseMapper接口,可直接使用BaseMapper提供的基础CRUD操作方法。
* </p>
*
* @author 聪明笨狗
* @since 2020-05-27 17:56
*/
public interface UserBookMapper extends BaseMapper<UserBook> {
// 若需要自定义数据库操作方法,可在此处添加接口方法声明
// 对应的SQL语句可以在XML文件中实现,或者使用@Select、@Insert等注解
}