using DataEntity; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace XImagingXhandler.XDAL { /// /// 涂布属性实体类 /// public class MethodCoating:IEntity { /// /// 是否从此命令开始 /// public string isrun { get; set; } /// /// 命令是否可用 /// public string status { get; set; } /// /// 命令名称 /// public string name { get; set; } /// /// 命令标签名 /// public string label { get; set; } /// /// 涂布耗材名称 /// public string labwareText { get; set; } /// /// 涂布耗材Id /// public string labwareValue { get; set; } /// /// 在实验方法中的位置编号 /// public string strIndex { get; set; } private string _positionText; /// /// 台面位置 /// public string positionText { get { return _positionText; } set { _positionText = value; OnPropertyChanged("positionText"); } } 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"); } } /// /// 板位Id /// public string positionValue { get; set; } /// /// 臂名称 /// public string armText { get; set; } /// /// 臂Id /// public string armValue { get; set; } /// /// 挑菌模式名称 /// public string coatingmodeText { get; set; } private string _wellarray; /// /// 涂布孔位 /// public string wellarray { get { return _wellarray; } set { _wellarray = value; OnPropertyChanged("wellarray"); } } /// /// 涂布方式 0:回字型 1:Z字型 /// public string coatingmodeValue { get; set; } = "0"; } }