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
package com.qianwen.smartman.modules.system.enums;
 
import com.qianwen.smartman.common.constant.ExcelConstant;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/enums/ConfigTypeEnum.class */
public enum ConfigTypeEnum {
    NEW_PAGE(1, "新建页"),
    EDIT_PAGE(2, "编辑页"),
    VIEW_PAGE(3, "查看页"),
    ORDER_PAGE(4, ExcelConstant.ORDER),
    QUERY_CONDITION(5, "查询条件");
    
    private Integer code;
    private String name;
 
    ConfigTypeEnum(final Integer code, final String name) {
        this.code = code;
        this.name = name;
    }
 
    public Integer getCode() {
        return this.code;
    }
 
    public String getName() {
        return this.name;
    }
}