using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using DataEntity;
namespace XImagingXhandler.XDAL
{
public class MethodFileMoveLabware:IEntity
{
public string isrun { get; set; }
public string status { get; set; }
public string name { get; set; }
public string comment { get; set; } = "";
public string strIndex { get; set; }
private string _label;
public string label
{
get { return _label; }
set
{
_label = value;
OnPropertyChanged("label");
}
}
public string armText { get; set; }
public string armValue { get; set; }
private string _filePath;
///
/// 移液表文件路径
///
public string filePath
{
get { return _filePath; }
set
{
_filePath = value;
OnPropertyChanged("filePath");
}
}
private int _beginLine = 1;
///
/// 从第几行开始读数据
///
public int beginLine
{
get { return _beginLine; }
set
{
_beginLine = value;
OnPropertyChanged("beginLine");
}
}
///
/// 转移表
///
public DataTable transferDataTable { get; set; }
///
/// 抓板板位
///
public string pickLattice { get; set; }
///
/// 抓板列
///
public string pickColumn { get; set; }
///
/// 抓板孔位
///
public string pickWell { get; set; }
///
/// 抓板部位
///
public string pickPart { get; set; }
///
/// 抓板方向
///
public string pickDirect { get; set; }
///
/// 放板板位
///
public string placeLattice { get; set; }
///
/// 放板列
///
public string placeColumn { get; set; }
///
/// 放板孔位
///
public string placeWell { get; set; }
///
/// 放板方向
///
public string placeDirect { get; set; }
private int _transportCount = 0;
///
/// 移动最上层的?层耗材
///
public int transportCount
{
get { return _transportCount; }
set
{
_transportCount = value;
OnPropertyChanged("transportCount");
}
}
///
/// 移动板位的方式, GripTransportMode
///
public int transportMode { get; set; } = -1;
}
}