using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Pcb.Common.Enum { ///产品类型 public enum EnumProType { /// /// Pcb /// [NoteAttribute("PCB")] Pcb = 1, /// /// 钢网 /// [NoteAttribute("钢网")] Stencil = 2, /// /// SMT /// [NoteAttribute("SMT")] SMT = 3, /// /// 元器件 /// [Note("BOM")] BOM = 4 } }