whywhyo
2023-08-14 0dc7b41e2530e7ea13066d2f17dc8bb24e4bd2dd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.ruoyi.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.domain.MemoBook;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * @Author Jinquan_Ou
 * @Description
 * @Date 2023-05-25 18:57
 * @Version 1.0.0
 **/
@Mapper
public interface MemoBookMapper extends BaseMapper<MemoBook> {
 
}