using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Pcb.Common.Enum { /// /// 数据导出类型 /// public enum EnumExportType { /// /// Pcb外发订单导出 /// [Note("Pcb外发订单")] PcbSendOrder, [Note("菲林订单")] Feilin, [Note("过序")] FlowStep, [Note("品质投诉")] QualityFeedBack, [Note("拼团砍价订单")] PinTuanOrder, [Note("pcb审单")] PcbOrderCheck, [Note("SMT对账单")] SmtSendOrder, [Note("Pcb对账单")] PcbJoinOrder, } }