package org.jeecg.modules.tms.enums; import lombok.Getter; /** * 出库状态枚举 */ @Getter public enum OutBoundStatusEnum { /** * 未出库 */ NOT_OUTBOUND("1", "未出库"), /** * 部分出库 */ PARTIAL_OUTBOUND("2", "部分出库"), /** * 出库完成 */ COMPLETED("3", "出库完成"); private final String value; private final String description; OutBoundStatusEnum(String value, String description) { this.value = value; this.description = description; } }