using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; /****************************** * Author:李太云 * Time:2015-7-29 15:11 * ******************************/ namespace Pcb.Common.Enum { /// /// 页面类型--单页模块用到 /// public enum EnumFileMd5CheckType { /// /// PCB客户上传文件 /// [Note("PCB客户上传文件")] PcbOrder_PcbFilePath = 1, /// /// 钢网客户上传文件 /// [Note("钢网客户上传文件")] OrderStencilInfo_GerberFilePath = 2, } }