using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; namespace JiepeiWMS.Common.Enums { public enum EnumWMCheckType { /// /// 初始化采购 /// [Description("采购")] Purchase = 0, /// /// 出库 /// [Description("出库")] OutStock = 1, /// /// 报价 /// [Description("报价")] Quote = 2, /// /// 请款 /// [Description("请款")] Pay = 3, } }