package ${package.Mapper}#if(!${kotlin});#end import ${package.Entity}.${entity}#if(!${kotlin});#end import ${superMapperClassPackage}#if(!${kotlin});#end import org.springframework.stereotype.Repository#if(!${kotlin});#end /** *

* $!{table.comment} Mapper 接口 *

* * @author ${author} * @since ${date} */ @Repository #if(${kotlin}) interface ${table.mapperName} : ${superMapperClass}<${entity}> #else public interface ${table.mapperName} extends ${superMapperClass}<${entity}> { } #end