17 lines
497 B
Plaintext
17 lines
497 B
Plaintext
<#if isWithPackage?exists && isWithPackage==true>package ${packageName}.mapper;</#if>
|
|
<#if isAutoImport?exists && isAutoImport==true>
|
|
import tk.mybatis.mapper.common.Mapper;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import ${packageName}.entity.${classInfo.className};
|
|
</#if>
|
|
/**
|
|
* @description ${classInfo.classComment}Mapper
|
|
* @author ${authorName}
|
|
* @date ${.now?string('yyyy-MM-dd')}
|
|
*/
|
|
@Mapper
|
|
public interface ${classInfo.className}Mapper extends Mapper<${classInfo.className}> {
|
|
|
|
|
|
}
|