using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using DataEntity;
namespace XImagingXhandler.XDAL
{
///
/// 开关盖参数类
///
public class MethodSwitchLid : 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 _wellarray = "";
///
/// 选中的孔位,逗号分割
///
public string wellarray
{
get { return _wellarray; }
set
{
_wellarray = value;
OnPropertyChanged("wellarray");
}
}
private int _switchState = 0;
///
/// 开关盖;0:开;1:关;
///
public int switchState
{
get { return _switchState; }
set
{
_switchState = value;
OnPropertyChanged("switchState");
}
}
private double _numOfCircle = 0;
///
/// 开关盖旋转圈数
///
public double numOfCircle
{
get { return _numOfCircle; }
set
{
_numOfCircle = value;
OnPropertyChanged("numOfCircle");
}
}
private double _switchSpeed = 0;
///
/// 开关盖旋转速度
///
public double switchSpeed
{
get { return _switchSpeed; }
set
{
_switchSpeed = value;
OnPropertyChanged("switchSpeed");
}
}
}
}