using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NXWMS.String.Enums { /// /// 入库状态 /// public enum InReceiptStatus { [Description("初始创建")] Init = 0, [Description("收货审核")] ReceiptAudit = 11, [Description("收货中")] InReceipt = 55, [Description("收货完成")] ReceiptComplete = 99, [Description("强制完成")] ForceComplete = 100, [Description("已删除")] Deleted = 111 } }