using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Pcb.Common.Enum { public enum EnumReportType { /// /// 成品出货报告 /// ChengPinChuHuoRepoet=0, /// /// 测试报告 /// TestReport=1, /// /// RoHS报告 /// RoHSReport = 2, /// /// 切片报告 /// QiePianReport = 3, /// /// 核验性报告 /// KeHanXingReport = 4 } }