using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace XImagingXhandler.XDAL { /// /// 远程中控时吸头孔位完整记录实体对象 /// public class TipsTableRemote { /// /// 索引编号 /// public string indexCoating { get; set; } /// /// 目标板编号 /// public string tagCodeCoating { get; set; } /// /// 板位Id /// public string lattice_id { get; set; } /// /// 耗材Id /// public string labware_id { get; set; } /// /// 孔名称 /// public string wellname { get; set; } /// /// 孔中心所在x轴坐标 /// public float axis_b_X { get; set; } /// /// 孔中心所在y轴坐标 /// public float axis_b_Y { get; set; } /// /// 孔中心所在z轴坐标 /// public float axis_b_Z { get; set; } /// /// 孔顶部形状 /// public int well_top_shape { get; set; } /// /// 孔半径 /// public float axis_b_r { get; set; } /// /// 是否被用过 /// public int isUsed { get; set; } /// /// 板位名称 /// public string lattice_num { get; set; } /// /// 被用过次数 /// public int isUsedCount { get; set; } = 0; } }