using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WMS.Info { /// /// 质检方案 /// [Description("质检类型")] public enum EQCTYPECODE { /// /// 固定 /// [Description("固定")] Percentage = 1, /// /// 比例 /// [Description("比例")] Fixed = 2, /// /// 免检 /// [Description("免检")] YearCehck = 3, } }