using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace XImagingXhandler.XDAL { /// /// 吸头孔位完整记录实体对象 /// public class TipsTable { /// /// 板位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; } /// /// 板内孔口形状;1:圆形;2:方形 /// public int well_top_shape { get; set; } /// /// 孔半径或者半边长度 /// public float axis_b_r { get; set; } /// /// 如果是吸头则表示吸头是否被用过;0:未用过; 1;用过 /// public int isUsed { get; set; } /// /// 板位编号 /// public string lattice_num { get; set; } /// /// 是否被用 /// public int isUsedCount { get; set; } = 0; } }