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/user/book/mapper/UserBookMapper.java

19 lines
683 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.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等注解
}