using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Pcb.Common.Enum { public enum EnumProFeedReason { [Note("少投")] 少投 = 1, [Note("短路")] 短路 = 2, [Note("表面擦花")] 表面擦花 = 3, [Note("洗坏")] 洗坏 = 4, [Note("CAM出错")] CAM出错 = 5, [Note("其他")] 其他 = 6 } }