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