| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- 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
- {
- /// <summary>
- /// 扫描模式
- /// </summary>
- 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,
- }
- /// <summary>
- /// 纸张规格
- /// </summary>
- 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,
- //}
- /// <summary>
- /// 普通上传,重传
- /// </summary>
- public enum upload_type_enum
- {
- normal = 1,
- reUpload = 2,
- }
- }
|