package com.qianwen.smartman.common.enums; 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; } }