fix
Hentua
2023-08-22 52fc68c944c8b5d1978114ea0f62f447b83f94d3
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}> {
 
}