mirror of
https://github.com/201206030/novel.git
synced 2025-04-27 07:30:50 +00:00
27 lines
514 B
Plaintext
27 lines
514 B
Plaintext
package ${package.Mapper};
|
|
|
|
import ${package.Entity}.${entity};
|
|
import ${superMapperClassPackage};
|
|
#if(${mapperAnnotationClass})
|
|
import ${mapperAnnotationClass.name};
|
|
#end
|
|
|
|
/**
|
|
* <p>
|
|
* $!{table.comment} Mapper 接口
|
|
* </p>
|
|
*
|
|
* @author ${author}
|
|
* @date ${date}
|
|
*/
|
|
#if(${mapperAnnotationClass})
|
|
@${mapperAnnotationClass.simpleName}
|
|
#end
|
|
#if(${kotlin})
|
|
interface ${table.mapperName} : ${superMapperClass}<${entity}>
|
|
#else
|
|
public interface ${table.mapperName} extends ${superMapperClass}<${entity}> {
|
|
|
|
}
|
|
#end
|