using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Common.PLSEnum { public enum VMIStatusEnum { /// /// 已绑定 /// [Description("已绑定")] 已绑定 = 1, /// /// 已入库 /// [Description("已入库")] 已入库 = 2, /// /// 已冻结 /// [Description("已冻结")] 已冻结 = 3, /// /// 已出库 /// [Description("已出库")] 已出库 = 4, /// /// 已退货 /// [Description("已退货")] 已退货 = 5, } }