ny
23 小时以前 b6f169fe43a2b13f351aefc152374fc7f0bc8cb7
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
package jnpf.permission.model.authorize;
 
import jnpf.base.entity.SystemEntity;
import jnpf.base.model.base.SystemBaeModel;
import jnpf.base.model.button.ButtonModel;
import jnpf.base.model.column.ColumnModel;
import jnpf.base.model.form.ModuleFormModel;
import jnpf.base.model.module.ModuleModel;
import jnpf.base.model.resource.ResourceModel;
import jnpf.model.login.UserSystemVO;
import lombok.Data;
 
import java.util.ArrayList;
import java.util.List;
 
/**
 * @author JNPF开发平台组
 * @version V3.1.0
 * @copyright 引迈信息技术有限公司
 * @date 2021/3/12 15:29
 */
@Data
public class AuthorizeVO {
    // 菜单
//    private List<MenuModel> menuList;
 
    /**
     * 功能
     */
    private List<ModuleModel> moduleList = new ArrayList<>();
 
    /**
     * 按钮
     */
    private List<ButtonModel> buttonList = new ArrayList<>();
 
    /**
     * 视图
     */
    private List<ColumnModel> columnList = new ArrayList<>();
 
    /**
     * 资源
     */
    private List<ResourceModel> resourceList = new ArrayList<>();
 
    /**
     * 表单
     */
    private List<ModuleFormModel> formsList = new ArrayList<>();
 
    /**
     * 系统
     */
    private List<SystemBaeModel> systemList = new ArrayList<>();
    /**
     * 身份
     */
    private List<UserSystemVO> standingList = new ArrayList<>();
    /**
     * 授权的流程id
     */
    private List<String> flowIdList = new ArrayList<>();
 
    /**
     * 当前系统
     */
    private SystemEntity currentSystem;
    /**
     * 其他属性
     */
    private OtherModel otherModel;
 
    public AuthorizeVO(List<ModuleModel> moduleList,
                       List<ButtonModel> buttonList,
                       List<ColumnModel> columnList,
                       List<ResourceModel> resourceList,
                       List<ModuleFormModel> formsList,
                       List<SystemBaeModel> systemList,
                       List<UserSystemVO> standingList,
                       SystemEntity currentSystem,
                       List<String> flowIdList,
                       OtherModel otherModel) {
        this.moduleList = moduleList;
        this.buttonList = buttonList;
        this.columnList = columnList;
        this.resourceList = resourceList;
        this.formsList = formsList;
        this.systemList = systemList;
        this.standingList = standingList;
        this.currentSystem = currentSystem;
        this.flowIdList = flowIdList;
        this.otherModel = otherModel;
    }
 
    public AuthorizeVO() {
    }
}