using DataEntity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace XImagingXhandler.XDAL
{
///
/// 安装枪头属性
///
public class MethodLoadTips: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 _headType = "";
///
/// 枪名称
///
public string headType
{
get { return _headType; }
set
{
_headType = value;
OnPropertyChanged("headType");
}
}
///
/// 枪头耗材名称
///
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");
}
}
}
}