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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace XImagingXhandler.XDAL
{
    /// <summary>
    /// 机械臂表
    /// </summary>
    [SugarTable("devicearm")]
    public class DeviceArm
    {
        /// <summary>
        /// 设备机械臂ID主键
        /// </summary>
        [SugarColumn(ColumnName = "device_arm_id", IsPrimaryKey = true)]
        public int device_arm_id { get; set; }
 
        /// <summary>
        /// 软件信息Id
        /// </summary>
        [SugarColumn(ColumnName = "software_information_id")]
        public string software_information_id { get; set; }
 
        /// <summary>
        /// 机械臂名称
        /// </summary>
        [SugarColumn(ColumnName = "device_arm_name")]
        public string device_arm_name { get; set; }
 
        /// <summary>
        /// 通道有效属性
        /// </summary>
        [SugarColumn(ColumnName = "device_arm_property")]
        public string device_arm_property { get; set; }
 
        /// <summary>
        /// 移液枪类型
        /// </summary>
        [SugarColumn(ColumnName = "head_type")]
        public string head_type { get; set; }
 
        /// <summary>
        /// 移液枪的通道数
        /// </summary>
        [SugarColumn(ColumnName = "channels")]
        public int channels { get; set; }
 
        /// <summary>
        /// 类型(0:夹爪、1:移液枪)
        /// </summary>
        [SugarColumn(ColumnName = "arm_type")]
        public int arm_type { get; set; }
    }
 
    /// <summary>
    /// 机械臂属性(0:夹爪、1:移液枪)
    /// </summary>
    public enum ArmTypeEnum
    {
        /// <summary>
        /// 夹爪
        /// </summary>
        [Description("夹爪")]
        Gripper = 0,
 
        /// <summary>
        /// 移液枪
        /// </summary>
        [Description("移液枪")]
        Channel = 1
    }
}