12345678910111213141516171819202122232425 |
- 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
- /**
- * <p>
- * $!{table.comment} Mapper 接口
- * </p>
- *
- * @author ${author}
- * @since ${date}
- */
- @Repository
- #if(${kotlin})
- interface ${table.mapperName} : ${superMapperClass}<${entity}>
- #else
- public interface ${table.mapperName} extends ${superMapperClass}<${entity}> {
- }
- #end
|