1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package ${package.Service};
|
| import ${package.Entity}.${entity};
| import ${superServiceClassPackage.replace('com.baomidou.mybatisplus.service.IService','com.baomidou.mybatisplus.extension.service.IService')};
|
| /**
| * <p>
| * $!{table.comment} 服务类
| * </p>
| *
| * @author ${author}
| * @since ${date}
| */
| #if(${kotlin})
| interface ${table.serviceName} : ${superServiceClass}<${entity}>
| #else
| public interface ${table.serviceName} extends ${superServiceClass}<${entity}> {
|
| }
| #end
|
|