using DataEntity;
using System;
using System.Collections.Generic;
using System.Data;
using System.Windows;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Drawing;
using System.Collections.ObjectModel;
namespace XImagingXhandler.XDAL
{
///
/// 挑菌前环境设置数据
///
public class MethodChoiceAgoAspirateChild : IEntity
{
///
/// 机械臂Id
///
public string armValue { get; set; }
#region 挑菌前环境设置
///
/// 吸液耗材名称
///
public string labwareText { get; set; } = "";
///
/// 吸液耗材Id
///
public string labwareValue { get; set; } = "";
///
/// 吸液板位Id
///
public string positionValue { get; set; } = "";
///
/// 液体参数Id
///
public string liquidpidText1 { get; set; } = "0";
///
/// 液体范围Id
///
public string liquidrangeidText1 { get; set; } = "0";
///
/// 液体Id
///
public string liquididText1 { get; set; } = "0";
///
/// 液体名称
///
public string liquididValue1 { get; set; } = "";
///
/// 液体范围名称
///
public string liquidrangeidValue1 { get; set; } = "";
///
/// 液体参数名称
///
public string liquidpidValue1 { get; set; } = "";
private string _positionText = "";
///
/// 吸液板位名
///
public string positionText
{
get { return _positionText; }
set
{
_positionText = value;
OnPropertyChanged("positionText");
}
}
private string _wellarray = "";
///
/// 吸液选中的孔位,逗号分割
///
public string wellarray
{
get { return _wellarray; }
set
{
_wellarray = value;
OnPropertyChanged("wellarray");
}
}
private double _wellvolume = 0d;
///
/// 每孔体积
///
public double wellvolume
{
get { return _wellvolume; }
set
{
_wellvolume = value;
OnPropertyChanged("wellvolume");
}
}
private bool _bEnableBeforeAspirate = false;
///
/// 在挑菌前前吸液
///
public bool bEnableBeforeAspirate
{
get { return _bEnableBeforeAspirate; }
set
{
_bEnableBeforeAspirate = value;
OnPropertyChanged("bMix");
}
}
#endregion
}
}