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
52
53
54
55
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HxEnum
{
    /// <summary>
    /// 其它常用枚举
    /// </summary>
    public class OtherEnum
    {
        /// <summary>
        /// 转板类型:0:开盖; 1:关盖; 2:转板
        /// </summary>
        public enum TransferTypeEnum
        {
            /// <summary>
            /// 开盖
            /// </summary>
            [Description("开盖")]
            Open = 0,
            /// <summary>
            /// 关盖
            /// </summary>
            [Description("关盖")]
            Close = 1,
            /// <summary>
            /// 转板
            /// </summary>
            [Description("转板")]
            TransferPlate = 2,
        }
    }
 
    /// <summary>
    /// 移动类型:0:移动移液枪 1:移动夹爪
    /// </summary>
    public enum MoveTypeEnum
    {
        /// <summary>
        /// 移动移液枪
        /// </summary>
        [Description("移动移液枪")]
        Chanel = 0,
 
        /// <summary>
        /// 移动夹爪
        /// </summary>
        [Description("移动夹爪")]
        Gripper = 1,
    }
}