UserMapper.java 353 字节
Newer Older
Q
qinyingjie 已提交
1 2 3 4
package com.kwan.springbootkwan.mapper;

import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.kwan.springbootkwan.entity.User;
Q
qinyingjie 已提交
5
import org.apache.ibatis.annotations.Mapper;
Q
qinyingjie 已提交
6

Q
qinyingjie 已提交
7 8 9 10 11 12 13 14
/**
 * mapper文件
 *
 * @author : qinyingjie
 * @version : 2.2.0
 * @date : 2022/12/19 16:12
 */
@Mapper
Q
qinyingjie 已提交
15 16 17 18
public interface UserMapper extends BaseMapper<User> {

}