refactor(权限点):DTO调整

This commit is contained in:
zhansihu 2023-09-06 20:24:22 +08:00
parent d1c89b7e4d
commit 657ec88c7f
2 changed files with 6 additions and 1 deletions

View File

@ -32,6 +32,11 @@ public class PermissionPointTreeNode implements IBaseTree<PermissionPointTreeNod
/** 权限点层级path **/
private String path;
/**
* 元素类别 0.模块 1.菜单 2页面 3按钮
*/
private Integer featureType;
/** 下级节点 **/
private List<PermissionPointTreeNode> children;

View File

@ -14,7 +14,7 @@ import java.util.List;
@Data
public class PermissionPointTreeQueryReq {
/** 授权策略 1-平台授权型 2-客户授权型 3-免授权型 为空查全部**/
/** 授权策略 0-全部 1-平台授权型 2-客户授权型 3-免授权型**/
private Integer delegateType;
/** 搜索关键字 - 名称模糊搜索 **/