using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Pcb.Common.Enum { public enum EnumPcbOrderType { /// /// 样板 /// [Description("SamplePlate")] SamplePlate = 1, /// /// 小批量 /// [Description("SmallAmount")] SmallAmount = 2 } }