using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Common.OrderEnum { public enum ReceiveOrderTypeEnum { /// /// 采购接收 /// [Description("采购接收")] PO = 1, /// /// 无采购接收 /// [Description("无采购接收")] NPO = 2, /// /// 客供料接收 /// [Description("客供料接收")] CustomerSupply = 3 } public enum ReceiveOrderStatusEnum { /// /// 未开始 /// [Description("未开始")] NotStarted=0, /// /// 收货中 /// [Description("收货中")] Receiving=1, /// /// 收货完成 /// [Description("收货完成")] Completed=2, /// /// 关闭 /// [Description("关闭")] 关闭 = 99, /// /// 取消 /// [Description("取消")] 取消 = 98 } }