yangys
2024-04-04 ed4a5236bab800094be4a8378f5098eebe3de6ac
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
package com.qianwen.smartman.modules.system.enums;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/enums/CustomFieldTypeEnums.class */
public enum CustomFieldTypeEnums {
    INPUT(1, "输入框"),
    DIGITAL_INPUT(2, "数字输入框"),
    MULTI_TEXT(3, "多行文本"),
    DATE(4, "日期"),
    SELECT(5, "单选"),
    MULTI_SELECT(6, "多选"),
    DROP_DOWN(7, "下拉选择器"),
    CASCADE_SELECT(8, "级联选择器"),
    BUSINESS(9, "业务字段-人员"),
    SYSTEM_DEFAULT(10, "系统默认");
    
    private final Integer type;
    private final String desc;
 
    CustomFieldTypeEnums(final Integer type, final String desc) {
        this.type = type;
        this.desc = desc;
    }
 
    public Integer getType() {
        return this.type;
    }
 
    public String getDesc() {
        return this.desc;
    }
 
    public static CustomFieldTypeEnums getEnum(Integer type) {
        CustomFieldTypeEnums[] values;
        for (CustomFieldTypeEnums value : values()) {
            if (value.getType().equals(type)) {
                return value;
            }
        }
        return INPUT;
    }
}