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; } }