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

config.ServiceImpl.ftl Maven / Gradle / Ivy

There is a newer version: 2.8.8
Show newest version
package ${package.ServiceImpl};

import org.springframework.stereotype.Service;

<#if dsName?default("")?trim?length gt 0>import ${nameOfDS};
import ${superServiceImplClassPackage};

import ${package.Entity}.${entity};
import ${package.Mapper}.${table.mapperName};
import ${package.Service}.${table.serviceName};

/**
 * 

* ${table.comment!} 服务实现类 *

* * @author ${author} * @since ${date} */ @Service <#if dsName?default("")?trim?length gt 0>@DS("${dsName}") <#if kotlin> open class ${table.serviceImplName} : ${superServiceImplClass}<${table.mapperName}, ${entity}>(), ${table.serviceName} { } <#else> public class ${table.serviceImplName} extends ${superServiceImplClass}<${table.mapperName}, ${entity}> implements ${table.serviceName} { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy