潘志宝
2024-09-12 27e7299964b861c079dbb2826edab00dfd6dc27d
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
package com.iailab.framework.common.enums;
 
import cn.hutool.core.util.ArrayUtil;
import com.iailab.framework.common.core.IntArrayValuable;
import lombok.AllArgsConstructor;
import lombok.Getter;
 
import java.util.Arrays;
 
/**
 * 全局用户类型枚举
 */
@AllArgsConstructor
@Getter
public enum UserTypeEnum implements IntArrayValuable {
 
    MEMBER(1, "会员"), // 面向 c 端,普通用户
    ADMIN(2, "管理员"); // 面向 b 端,管理后台
 
    public static final int[] ARRAYS = Arrays.stream(values()).mapToInt(UserTypeEnum::getValue).toArray();
 
    /**
     * 类型
     */
    private final Integer value;
    /**
     * 类型名
     */
    private final String name;
 
    public static UserTypeEnum valueOf(Integer value) {
        return ArrayUtil.firstMatch(userType -> userType.getValue().equals(value), UserTypeEnum.values());
    }
 
    @Override
    public int[] array() {
        return ARRAYS;
    }
}