using System; using System.Linq; using System.Text; using SqlSugar; namespace IvfTl.Control.Entity.DBEntitys { /// /// /// [SugarTable("HouseWellSettingDB")] public partial class HouseWellSettingDB { public HouseWellSettingDB(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public long cid {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string tlSn {get;set;} /// /// Desc: /// Default: /// Nullable:False /// public int houseSn {get;set;} /// /// Desc: /// 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: /// Default: /// Nullable:False /// public int eepromClearPosition {get;set;} // ──────────────────────────────────────────────────────────────── // V-047 取数链:well 级拍照层覆盖本地缓存列(对齐运行时 HouseWellSetting + sql 迁移 // house_well_setting.focus_layer_spacing_pulse / focus_layer_count;空=继承设备级)。 // 下移层数复用既有 moveDownLayer,不新增列。 // ──────────────────────────────────────────────────────────────── /// /// Desc:well级层间距覆盖(空=继承设备级) focus_layer_spacing_pulse /// Nullable:True /// [SugarColumn(IsNullable = true)] public int? focusLayerSpacingPulse {get;set;} /// /// Desc:well级层数覆盖(空=继承设备级) focus_layer_count /// Nullable:True /// [SugarColumn(IsNullable = true)] public int? focusLayerCount {get;set;} } }