using SqlSugar; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace XImagingXhandler.XDAL { /// /// 机械臂表 /// [SugarTable("devicearm")] public class DeviceArm { /// /// 设备机械臂ID主键 /// [SugarColumn(ColumnName = "device_arm_id", IsPrimaryKey = true)] public int device_arm_id { get; set; } /// /// 软件信息Id /// [SugarColumn(ColumnName = "software_information_id")] public string software_information_id { get; set; } /// /// 机械臂名称 /// [SugarColumn(ColumnName = "device_arm_name")] public string device_arm_name { get; set; } /// /// 通道有效属性 /// [SugarColumn(ColumnName = "device_arm_property")] public string device_arm_property { get; set; } /// /// 移液枪类型 /// [SugarColumn(ColumnName = "head_type")] public string head_type { get; set; } /// /// 移液枪的通道数 /// [SugarColumn(ColumnName = "channels")] public int channels { get; set; } /// /// 类型(0:夹爪、1:移液枪) /// [SugarColumn(ColumnName = "arm_type")] public int arm_type { get; set; } } /// /// 机械臂属性(0:夹爪、1:移液枪) /// public enum ArmTypeEnum { /// /// 夹爪 /// [Description("夹爪")] Gripper = 0, /// /// 移液枪 /// [Description("移液枪")] Channel = 1 } }