using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Central.Control.WebApi.Enum { /// /// 订单状态 /// public enum OrderStatusEnum { /// /// 0未支付 /// UnPay = 0, /// /// 1已支付 /// Paid = 1, /// /// 2已取消 /// Cancel = 2, /// /// 抓取中 /// Catching = 3, /// /// 烧烤中 /// Roasting = 4, /// /// 打包中 /// Packing = 5, /// /// 6已出货 /// Shipped = 6, /// /// 99错误 /// Error = 99 } }