using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ivf_tl_Entity.DebugEntitys { public class HouseWellSetting { /// /// Desc:tl设备sn /// Default: /// Nullable:False /// public string tlSn { get; set; } /// /// Desc:舱室编号:1-11(11号舱室为缓冲瓶) /// Default: /// Nullable:False /// public int houseSn { get; set; } /// /// Desc:well编号:1-16 /// Default: /// Nullable:False /// public int wellSn { get; set; } /// /// Desc:左边裁剪像素 /// Default: /// Nullable:False /// public int leftOffset { get; set; } /// /// Desc:下边裁剪像素 /// Default: /// Nullable:False /// public int bottomOffset { get; set; } /// /// Desc:对焦起点下移层数_更新对焦起点 /// Default: /// Nullable:False /// public int moveDownLayer { get; set; } /// /// Desc:水平电机位置 /// Default: /// Nullable:False /// public int horizontalMotorPosition { get; set; } /// /// Desc:E方清晰位置 /// Default: /// Nullable:False /// public int eepromClearPosition { get; set; } /// /// M2-07 well 级层间距覆盖(house_well_setting.focus_layer_spacing_pulse,可空)。 /// 对焦后界面手调"实际拍摄层间距"持久化此列;留 null=继承设备级(§2.5 就近优先)。 /// 对齐 sql 迁移 2026-06-17-autofocus-data-layer.sql house_well_setting 扩列。 /// public int? focusLayerSpacingPulse { get; set; } /// /// M2-07 well 级层数覆盖(house_well_setting.focus_layer_count,可空)。 /// 对焦后界面手调"实际拍摄层数"持久化此列;留 null=继承设备级。 /// 注:下移层数复用既有 moveDownLayer 列,不另加(§2.8)。 /// public int? focusLayerCount { get; set; } } }