xiaoyong931011
2022-08-08 bd034b20e86824436e9a35ba407a8e626c67f210
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package ${basePackage}.${mapperPackage};
 
import ${basePackage}.${entityPackage}.${className};
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 
/**
 * ${tableComment} Mapper
 *
 * @author ${author}
 * @date ${date}
 */
public interface ${className}Mapper extends BaseMapper<${className}> {
 
}