xiejun
2024-09-06 1615c6851b507867f9090f8cafcb1a32d1dad6bc
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package com.vci.dto;
 
import com.vci.starter.web.pagemodel.Tree;
import lombok.Data;
 
import java.io.Serializable;
import java.util.List;
/**
 * 授权对象
 * @author xiej
 * @date 2024-09-05
 */
public class UIAuthorDTO implements Serializable {
    private static final long serialVersionUID = -1996329568646378902L;
    /**
     *角色ID
     */
    private String roleId;
    /**
     *业务类型
     */
    private String type;
    /**
     *上下文
     */
    private String context;
    /**
     * 授权的节点
     */
    List<Tree> selectTreeList;
 
    public String getRoleId() {
        return roleId;
    }
 
    public void setRoleId(String roleId) {
        this.roleId = roleId;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getContext() {
        return context;
    }
 
    public void setContext(String context) {
        this.context = context;
    }
 
    public List<Tree> getSelectTreeList() {
        return selectTreeList;
    }
 
    public void setSelectTreeList(List<Tree> selectTreeList) {
        this.selectTreeList = selectTreeList;
    }
 
    @Override
    public String toString() {
        return "UIAuthorDTO{" +
                "roleId='" + roleId + '\'' +
                ", type='" + type + '\'' +
                ", context='" + context + '\'' +
                ", selectTreeList=" + selectTreeList +
                '}';
    }
}