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