schangxiang@126.com
2025-11-04 f5ed29dc26c7cd952d56ec5721a2efc43cd25992
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace XImagingXhandler.XDAL
{
    /// <summary>
    /// 设备枚举
    /// </summary>
    public class DeviceCategory
    {
        /// <summary>
        /// Lite硬件设备
        /// </summary>
        public static string DeviceLite = "Lite";
        /// <summary>
        /// X1硬件设备
        /// </summary>
        public static string DeviceX1 = "X1";
        /// <summary>
        /// Choice硬件设备
        /// </summary>
        public static string DeviceChoice = "Choice";
        /// <summary>
        /// Lite_Choice硬件设备(微牧)
        /// </summary>
        public static string DeviceLiteChoice = "Lite_Choice";
        /// <summary>
        /// T200硬件设备
        /// </summary>
        public static string DeviceT200 = "T200";
 
        /// Elisa硬件设备
        /// </summary>
        public static string DeviceElisa = "Elisa";
        /// <summary>
        /// X3硬件设备
        /// </summary>
        public static string DeviceX3 = "X3";
        /// <summary>
        /// 化学硬件设备
        /// </summary>
        public static string DeviceHXFX = "HXFX";
        /// <summary>
        /// 电泳跑胶全自动系统设备
        /// </summary>
        public static string DeviceHXELEC = "HXELEC";
    }
}