【8.0】【role】更新获取角色绑定数据权限接口的详情返回

pull/57/head
fengshuonan 2023-07-16 23:57:33 +08:00
parent e2364f17c3
commit fd3aa4ef1b
1 changed files with 3 additions and 0 deletions

View File

@ -25,6 +25,8 @@
package cn.stylefeng.roses.kernel.sys.modular.role.pojo.response;
import cn.stylefeng.roses.kernel.rule.annotation.ChineseDescription;
import cn.stylefeng.roses.kernel.rule.annotation.SimpleFieldFormat;
import cn.stylefeng.roses.kernel.sys.api.format.OrgNameFormatProcess;
import lombok.Data;
import java.util.List;
@ -48,6 +50,7 @@ public class RoleBindDataScopeResponse {
* id
*/
@ChineseDescription("用户拥有的指定部门的组织机构信息id集合")
@SimpleFieldFormat(processClass = OrgNameFormatProcess.class)
private List<Long> orgIdList;
}