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 EQCAddress { /// /// 固定 /// [Description("线边")] XPQC = 1, /// /// 比例 /// [Description("IQC")] IQC = 2, /// /// 免检 /// [Description("FQC")] FQC = 3, } }