All Downloads are FREE. Search and download functionalities are using the official Maven repository.

templates.mapper.ftl Maven / Gradle / Ivy

There is a newer version: 1.1.26
Show newest version
package ${package.Mapper};

import ${superMapperClassPackage};
import ${package.Entity}.${entity};
<#if mapperAnnotationClass??>
import ${mapperAnnotationClass.name};

import org.springframework.stereotype.Repository;

/**
 * 

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy