using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using DataEntity; namespace XImagingXhandler.XDAL { /// /// 泵排液参数 /// public class MethodPumpDispese : IEntity {/// /// 是否从此命令开始 /// public string isrun { get; set; } = "运行起点"; /// /// 命令是否可用 /// 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"); } } /// /// 泵排液耗材名称 /// public string labwareText { get; set; } = ""; /// /// 泵排液耗材Id /// public string labwareValue { get; set; } = ""; private string _positionText = ""; /// /// 泵排液板位名 /// public string positionText { get { return _positionText; } set { _positionText = value; OnPropertyChanged("positionText"); } } /// /// 泵排液板位Id /// public string positionValue { get; set; } = ""; /// /// 泵排液机械臂名称 /// public string armText { get; set; } = ""; /// /// 泵排液机械臂Id /// public string armValue { get; set; } = ""; private string _wellarray = ""; /// /// 泵排液选中的孔位,逗号分割 /// public string wellarray { get { return _wellarray; } set { _wellarray = value; OnPropertyChanged("wellarray"); } } private List _pumpParams = new List(); /// /// 泵排液液体参数 /// public List pumpParams { get { return _pumpParams; } set { _pumpParams = value; OnPropertyChanged("pumpParams"); } } } }