using DataEntity; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace XImagingXhandler.XDAL { /// /// 结束夹爪保持时方法节点类 /// public class MethodEndHoldingLabware : IEntity { /// /// 是否是开始运行起点:运行起点/disable /// public string isrun { get; set; } /// /// 禁用状态:enable/disable /// public string status { get; set; } /// /// 单命令名称 /// public string name { get; set; } /// /// 单命令在实验流程中的编号 /// public string strIndex { get; set; } private string _label; /// /// 单命令标签 /// public string label { get { return _label; } set { _label = value; OnPropertyChanged("label"); } } /// /// arm名字 /// public string armText { get; set; } /// /// arm的ID /// public string armValue { get; set; } #region source /// /// source板位的名字 /// public string srcPositionText { get; set; } /// /// source板位的id /// public string srcPositionValue { get; set; } /// /// source板位类型:0:载架;1:设备;2:台面 /// public int srcPositionType { get; set; } /// /// 抓板方向名称 /// public string gripModelText { get; set; } /// /// 抓板方向值 /// public int gripModelValue { get; set; } /// /// 抓板耗材Id /// public string gripPickLabwareValue { get; set; } /// /// 抓板耗材名称 /// public string gripPickLabwareText { get; set; } /// /// 抓板位置;1:底部;2:顶部 /// public string gripModelPosText { get; set; } /// /// 抓板位置 /// public int gripModelPosValue { get; set; } #endregion #region destination /// /// destination板位的名字 /// public string desPositionText { get; set; } /// /// destination的id /// public string desPositionValue { get; set; } /// /// destination板位类型:0:载架;1:设备;2:台面 /// public int desPositionType { get; set; } /// /// 放板方向名称 /// public string gripModelSetText { get; set; } /// /// 放板方向值 /// public int gripModelSetValue { get; set; } /// /// 放板耗材Id /// public string gripPlaceLabwareValue { get; set; } = "-1"; /// /// 放板耗材名称 /// public string gripPlaceLabwareText { get; set; } #endregion /// /// 移动最上层的?层耗材 /// private int _transportCount; public int transportCount { get { return _transportCount; } set { _transportCount = value; OnPropertyChanged("transportCount"); } } /// /// 移动板位的方式, GripTransportMode /// public int transportMode { get; set; } } }