lxzn-module-tms/src/main/java/org/jeecg/modules/tms/enums/OutBillStatus.java
@@ -1,11 +1,14 @@ package org.jeecg.modules.tms.enums; import lombok.Getter; import java.util.Objects; /** * 出库单状态枚举类 */ @Getter public enum OutBillStatus { /** * 草稿状态,值为1 @@ -39,24 +42,6 @@ OutBillStatus(String value, String description) { this.value = value; this.description = description; } /** * 获取状态值 * * @return 状态值 */ public String getValue() { return value; } /** * 获取状态描述 * * @return 状态描述 */ public String getDescription() { return description; } /**