using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Data; using DataEntity; namespace XImagingXhandler.XDAL { /// /// 电泳切胶文件 /// public class MethodElectroFile:IEntity { /// /// 是否开始运行起点 /// public string isrun { get; set; } /// /// 是否禁用状态:true;false; /// 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"); } } private string _comment; /// /// 备注 /// public string comment { get { return _comment; } set { _comment = value; OnPropertyChanged("comment"); } } /// /// 臂名称 /// public string armText { get; set; } /// /// 臂Id /// public string armValue { get; set; } /// /// 枪头耗材名称 /// public string labwaretipText { get; set; } /// /// 枪头耗材Id /// public string labwaretipValue { get; set; } private string _headType; /// /// 枪头类型 /// public string headType { get { return _headType; } set { _headType = value; OnPropertyChanged("headType"); } } private int[] _channels; /// /// 移液所用通道 /// public int[] channels { get { return _channels; } set { _channels = value; OnPropertyChanged("channels"); } } private string _filePath; /// /// 移液表文件路径 /// public string filePath { get { return _filePath; } set { _filePath = value; OnPropertyChanged("filePath"); } } private int _beginLine; /// /// 从第几行开始读数据 /// public int beginLine { get { return _beginLine; } set { _beginLine = value; OnPropertyChanged("beginLine"); } } /// /// 移液表 /// public DataTable transferDataTable { get; set; } /// /// 来源孔板列名 /// public string sourceLabware { get; set; } /// /// 来源孔列名 /// public string sourceWell { get; set; } /// /// 目标板列名 /// public string destinationLabware { get; set; } /// /// 目标孔列名 /// public string destinationWell { get; set; } /// /// 移液体积列名 /// public string destVolume { get; set; } /// /// Tip头列名 /// public string tipSet { get; set; } /// /// 液体参数Id /// public string liquidpidText { get; set; } = "0"; /// /// 液体参数名称 /// public string liquidpidValue { get; set; } = ""; /// /// 液体范围Id /// public string liquidrangeidText { get; set; } = "0"; /// /// 液体范围名称 /// public string liquidrangeidValue { get; set; } = ""; /// /// 液体Id /// public string liquididText { get; set; } = "0"; /// /// 液体名称 /// public string liquididValue { get; set; } = ""; /// /// 更换枪头方式: 0-不换枪头, 1-根据表单内容更换枪头,2-每次吸加液后更换枪头 /// public int changeTipsMode { get; set; } /// /// 更换枪头下拉选项文本 /// public string changeToTipText { get; set; } /// /// 更换枪头下拉选项Id /// public int changeToTipValue { get; set; } } }