潘志宝
2024-12-16 b0d6ee5cc46e7227a61885e54cf3259d27db5dea
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
package com.iailab.module.system.enums.permission;
 
import com.iailab.framework.common.core.IntArrayValuable;
import lombok.AllArgsConstructor;
import lombok.Getter;
 
import java.util.Arrays;
 
/**
 * 数据范围枚举类
 *
 * 用于实现数据级别的权限
 *
 * @author iailab
 */
@Getter
@AllArgsConstructor
public enum DataScopeEnum implements IntArrayValuable {
 
    ALL(1), // 全部数据权限
 
    DEPT_CUSTOM(2), // 指定部门数据权限
    DEPT_ONLY(3), // 部门数据权限
    DEPT_AND_CHILD(4), // 部门及以下数据权限
 
    SELF(5); // 仅本人数据权限
 
    /**
     * 范围
     */
    private final Integer scope;
 
    public static final int[] ARRAYS = Arrays.stream(values()).mapToInt(DataScopeEnum::getScope).toArray();
 
    @Override
    public int[] array() {
        return ARRAYS;
    }
 
}