using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IvfTl.Control.Entity.GlobalEntitys { 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-03 本地自动对焦:well 级拍照层覆盖(对齐 sql 迁移 house_well_setting 扩列;空=继承 tl_setting 设备级)。 // 下移层数复用既有 moveDownLayer,不新增列。 // ⚠ 待验证(V-046/V-049):C# 属性已加,取数链路是否填进来需真机/真库确认。 // ──────────────────────────────────────────────────────────────── /// /// Desc:well级层间距覆盖(空=继承设备级) focus_layer_spacing_pulse /// Default: NULL /// Nullable:True /// public int? focusLayerSpacingPulse { get; set; } /// /// Desc:well级层数覆盖(空=继承设备级) focus_layer_count /// Default: NULL /// Nullable:True /// public int? focusLayerCount { get; set; } } }