using DataEntity; using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Text; using System.Threading.Tasks; namespace XImagingXhandler.XDAL { /// /// 挑菌方法属性 /// public class MethodChoice:IEntity { /// /// 是否从此命令开始 /// public string isrun { get; set; } /// /// 命令是否可用 /// public string status { get; set; } /// /// 命令名称 /// public string name { get; set; } /// /// 命令标签名 /// public string label { get; set; } /// /// 吸液命令在实验流程中的位置编号 /// public string strIndex { get; set; } /// /// 吸液耗材名称 /// 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 _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"); } } /// ///挑菌所用枪头耗材名称 /// public string labwaretipText { get; set; } /// /// 挑菌所用枪头耗材Id /// public string labwaretipValue { get; set; } /// /// 菌名称 /// public string bacteriaText { get; set; } /// /// 菌Id /// public string bacteriaValue { get; set; } private string _filePath; /// /// 移液表文件路径 /// public string filePath { get { return _filePath; } set { _filePath = value; OnPropertyChanged("filePath"); } } /// /// 移液表 /// public DataTable transferDataTable { get; set; } /// /// 来源皿列名 /// public string sourceLabware { get; set; } /// /// 来源皿坐标列名 /// public string sourceWell { get; set; } /// /// 挑菌方式 0:单选, 1:穿刺, 2:吸液 /// public int choiceMode { get; set; } = 0; /// /// 从第几行开始读数据 /// public string beginLine { get; set; } = "0"; /// /// 从第几行开始挑菌 /// public string startPos { get; set; } = "0"; } }