admin
2021-10-14 932777e9d6dc8dc5d9edbfc9117639ae02d96956
src/main/resources/generater/service/service.template
@@ -1,15 +1,15 @@
package ${packageName};
import ${service.clazz};
import ${query.clazz};
import ${entity.clazz};
<#list importList as import>
import ${import};
</#list>
public interface ${service.name} {
<#list metodInfoList as method>
    ${method.note}
    ${method.visiteAccess} ${method.returnType} ${method.name}(${method.params});
    ${method.visiteAccess} ${method.returnType} ${method.name}(${method.params}) <#if method.exceptions??> throws ${method.exceptions}</#if>;
</#list>