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

templates.serviceImpl.vm Maven / Gradle / Ivy

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

import ${package.Entity}.${entity};
import ${package.Mapper}.${table.mapperName};
import ${package.Service}.${table.serviceName};
import ${superServiceImplClassPackage};
import org.springframework.stereotype.Service;

/**
 * 

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

* * @author ${author} * @since ${date} */ @Service #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} { } #end




© 2015 - 2024 Weber Informatics LLC | Privacy Policy