fix 重命名通用 数据权限 服务接口类名称,与其他服务接口风格统一

This commit is contained in:
konbai
2022-01-16 01:06:51 +08:00
parent 0b09272a60
commit 404cb4c7a6
2 changed files with 3 additions and 3 deletions

View File

@ -0,0 +1,24 @@
package com.ruoyi.system.service;
/**
* 通用 数据权限 服务
*
* @author Lion Li
*/
public interface ISysDataScopeService {
/**
* 获取角色自定义权限
* @param roleId 角色id
* @return 部门id组
*/
String getRoleCustom(Long roleId);
/**
* 获取部门及以下权限
* @param deptId 部门id
* @return 部门id组
*/
String getDeptAndChild(Long deptId);
}