using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace XImagingXhandler.XDAL { /// /// 中控下传的移液表实体 /// public class SetMoveLiquidData_param { /// /// 主键ID /// public string CoatingDataId { get; set; } /// /// 来原板 /// public string SourceA { get; set; } /// /// 来源板编码 /// public string SourceBarcode { get; set; } /// /// 来源板坐标 /// public string SourceWell { get; set; } /// /// 目标板 /// public string TargetB { get; set; } /// /// 目标板编码 /// public string TargetBarcode { get; set; } /// /// 目标板孔位 /// public string TargetWell { get; set; } /// /// 开始执行时间 /// public string StartActionTime { get; set; } /// /// 结束执行时间 /// public string EndActionTime { get; set; } /// /// 吸液体积 /// public string Volume { get; set; } /// /// 是否更换枪头 /// public string changetips { get; set; } /// /// 是否执行成功(0没成功,1成功) /// public string ExcuteResult { get; set; } } }