using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MES.Production.Entity.Enum { /// /// 订单状态 /// public enum OrderStatusEnum { /// /// 0未支付 /// [Description("未支付")] UnPay = 0, /// /// 1已支付 /// [Description("已支付")] Paid = 1, /// /// 2已取消 /// [Description("已取消")] Cancel = 2, /// /// 待抓取 /// [Description("待抓取")] Catch = 3, /// /// 烧烤中 /// [Description("烧烤中")] Roasting = 4, /// /// 打包中 /// [Description("打包中")] Packing = 5, /// /// 6已出货 /// [Description("已出货")] Shipped = 6, /// /// 99错误 /// [Description("错误")] Error = 99 } }