fix
Helius
2022-06-17 38a7fc9d1a7a421741ef641303ac8d2a78d997f5
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}> {
 
}