using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace XImagingXhandler.XDAL { /// /// 涂布报告实体 /// public class CoatingReport { /// /// 序号从1开始,自增 /// public string CoatingReport_id { get; set; } /// /// 来源板名称 /// public string SourcePlateID { get; set; } /// /// 来源板二维码号 /// public string SourcePlateBarcode { get; set; } /// /// 来源板孔号或点位坐标 /// public string SourcePlateWell { get; set; } /// /// 目标板名称 /// public string TargetPlateID { get; set; } /// /// 目标板二维码号 /// public string TargetPlateBarcode { get; set; } /// /// 目标板孔号 /// public string TargetPlateWell { get; set; } /// /// 完成的液体体积 /// public string Volume { get; set; } /// /// 挑选涂布结果 /// public string result { get; set; } /// /// 涂布完成时刻 /// public string ActionTime { get; set; } } }