cjl
2023-10-13 100690a225167806a08f64eafff3326564a7154a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.moral.api.mapper;
 
import com.moral.api.entity.User;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 
/**
 * <p>
 * 用户表 Mapper 接口
 * </p>
 *
 * @author moral
 * @since 2021-03-09
 */
public interface UserMapper extends BaseMapper<User> {
 
}