package com.qianwen.smartman.common.enums; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/common/enums/GlobalWcsTypeEnum.class */ public enum GlobalWcsTypeEnum { DEFAULT("系统默认", 1), BUSINESS("业务逻辑", 2), FEEDBACK("反馈", 4); private final String name; private final Integer type; GlobalWcsTypeEnum(final String name, final Integer type) { this.name = name; this.type = type; } public String getName() { return this.name; } public Integer getType() { return this.type; } }