package cc.mrbird.febs.common.enumerates; import lombok.Getter; @Getter public enum ClothesOrderStatusEnum { /** * 状态;1-待支付 2-待发货 3-待收货 4-已完成 5-已取消 */ WAIT_PAY(1), /** * 待发货 */ WAIT_SHIPPING(2), /** * 待收货 */ WAIT_FINISH(3), /** * 已完成 */ FINISH(4), /** * 已取消 */ CANCEL(5) ; private final int value; ClothesOrderStatusEnum(int value) { this.value = value; } }