zhuguifei
2025-04-28 442928123f63ee497d766f9a7a14f0a6ee067e25
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package org.jeecg.common.doc.vo;
 
import lombok.Data;
 
import java.util.ArrayList;
import java.util.List;
 
@Data
public class DeptPathPermissionVo {
 
    public static final Integer TYPE_DEPART = 1;
    public static final Integer TYPE_ROLE = 2;
    private String id;
 
    private String key;
    /**部门ID*/
    private String deptId;
    /**部门名称*/
    private String deptName;
    /**部门code**/
    private String orgCode;
    /**文件ID*/
    private String pathId;
    /**角色ID*/
    private String roleId;
    /**角色名称*/
    private String roleName;
    /**访问权限*/
    private Integer visit;
    /**下载权限*/
    private Integer download;
    /**管理权限*/
    private Integer manage;
    /**下载限额*/
    private Long flow;
    private Integer type; // 1部门,2角色
    private Integer sort;
    private String parentId;
 
    private List<DeptPathPermissionVo> children = new ArrayList<>();
}