package ${package.Service}; import ${package.Entity}.${entity}; import ${superServiceClassPackage.replace('com.baomidou.mybatisplus.service.IService','com.baomidou.mybatisplus.extension.service.IService')}; /** *

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

* * @author ${author} * @since ${date} */ #if(${kotlin}) interface ${table.serviceName} : ${superServiceClass}<${entity}> #else public interface ${table.serviceName} extends ${superServiceClass}<${entity}> { } #end