using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace XImagingXhandler.XDAL { /// /// 梯度稀释专用吸液参数实体 /// public class AspirateMultiParams { #region 液体 /// /// 液体类型Id /// public string liquidTypeText { get; set; } = "0"; /// /// 液体类型名称 /// public string liquidTypeValue { get; set; } = ""; /// /// 液体范围Id /// public string liquidRangeText { get; set; } = "0"; /// /// 液体范围名称 /// public string liquidRangeValue { get; set; } = ""; /// /// 液体参数Id /// public string liquidText { get; set; } = "0"; /// /// 液体参数名称 /// public string liquidValue { get; set; } = ""; #endregion #region 机械臂、通道 public string armValue { get; set; } /// /// 移液枪通道: 已sort /// public int[] channels { get; set; } = { }; #endregion #region 混合 /// /// 是否混合 /// public bool isMix { get; set; } = false; #endregion } }