1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package org.dromara.system.api;
|
| /**
| * 数据权限服务
| *
| * @author Lion Li
| */
| public interface RemoteDataScopeService {
|
| /**
| * 获取角色自定义权限语句
| */
| String getRoleCustom(Long roleId);
|
| /**
| * 获取部门和下级权限语句
| */
| String getDeptAndChild(Long deptId);
|
| }
|
|