using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace NXWMS.Client.String.Enums { /// /// 质检方式 /// public enum InspectionWay { [Description("收货前质检")] ReceiptBefore = 1, [Description("库内出库质检")] ReceiptAfter = 2, [Description("库内抽检")] Extract = 2, } }