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>