using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.IO; using System.ComponentModel; namespace HXX.Scanner.Biz { /// /// 扫描模式 /// public enum ScanType { [Description("正式扫描")] Formal = 0, [Description("网页端测试")] Test_From_Web = 1, [Description("网页端测试 第三方")] Test_3rd_Party = 2, [Description("扫描模板")] ScanTemplate = 3, [Description("界面测试 单页")] Test_Panel_1_Side = 11, [Description("界面测试 双页")] Test_Panel_2_Sides = 12, } /// /// 纸张规格 /// public enum PaperSize { [Description("A3")] A3 = 0, [Description("A4")] A4 = 1, [Description("8开")] K8 = 2, [Description("16开")] K16 = 11, } //public enum Custom_Environment //{ // [Description("测试环境")] // Test = 1, // [Description("正式环境")] // Product = 2, //} /// /// 普通上传,重传 /// public enum upload_type_enum { normal = 1, reUpload = 2, } }