using DataEntity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace XImagingXhandler.XDAL
{
///
/// 卸载枪头属性实体
///
public class MethodUnloadTips: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; } = "";
///
/// 枪名称
///
public string headType { get; set; }= "";
///
/// 枪头耗材名称
///
public string labwaretipText { get; set; } = "";
///
/// 枪头耗材Id
///
public string labwaretipValue { get; set; }= "";
///
/// 卸载选中的孔位,逗号分割
///
public string wellarray { get; set; } = "";
private int[] _channels= { };
///
/// 卸载使用的通道号数组
///
public int[] channels
{
get { return _channels; }
set
{
_channels = value;
OnPropertyChanged("channels");
}
}
///
/// 卸载选中的孔位,逗号分割
///
public bool isputToSource { get; set; } = false;
}
}