xiaoyong931011
2023-08-23 5aa5af70004e1eaecfc263f4b43aa2680b479a60
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}> {
 
}