wzy
2022-08-14 b141df9bf9764db8567efebed48006e12ab1f657
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
package com.xzx.gc.role.rbac;
 
import java.util.List;
 
/**
 * 通过DataAccess 得出跟查询相关的用户或者组织机构列表
 * @author lijiazhi
 *
 */
public class DataAccessResullt {
    private List<Long> userIds;
    private List<Long> orgIds;
    //1 结果仅仅包含用户, 2 ,结果仅仅包含组织机构 3 结果匹配所有组织结构 4 结果不匹配任何组织机构
    private AccessType status ;
    
    
    public List<Long> getUserIds() {
        return userIds;
    }
    public void setUserIds(List<Long> userIds) {
        this.userIds = userIds;
    }
    public List<Long> getOrgIds() {
        return orgIds;
    }
    public void setOrgIds(List<Long> orgIds) {
        this.orgIds = orgIds;
    }
    public AccessType getStatus() {
        return status;
    }
    public void setStatus(AccessType status) {
        this.status = status;
    }
    
    
}