using System.ComponentModel.DataAnnotations.Schema; namespace AsbCloudDb.Model.WITS { /// /// Record name: Передача полных /// Description: SibReciver. Передача полных /// Description2: /// [Table("t_telemetry_wits_60")] public class Record60 : RecordBase { /// /// RecordId = 60, /// ItemId = 99, /// LongMnemonic = "DEPTBITM", /// ShortMnemonic = "DBTM", /// Description = "SibReceiver custom. Положение долота", /// Description2 = "", /// FPSUnits = "----", /// MetricUnits = "---", /// Length = 4, /// ValueType = "F" /// [Column("DEPTBITM")] public float? Deptbitm { get; set; } /// /// RecordId = 60, /// ItemId = 10, /// LongMnemonic = "DEPTMEAS", /// ShortMnemonic = "DMEA", /// Description = "SibReceiver custom. Точка Замера", /// Description2 = "", /// FPSUnits = "----", /// MetricUnits = "---", /// Length = 4, /// ValueType = "F" /// [Column("DEPTMEAS")] public float? Deptmeas { get; set; } /// /// RecordId = 60, /// ItemId = 11, /// LongMnemonic = "Gtot", /// ShortMnemonic = "Gtot", /// Description = "SibReceiver custom", /// Description2 = "", /// FPSUnits = "----", /// MetricUnits = "---", /// Length = 4, /// ValueType = "F" /// [Column("Gtot")] public float? Gtot { get; set; } /// /// RecordId = 60, /// ItemId = 12, /// LongMnemonic = "Gx", /// ShortMnemonic = "Gx", /// Description = "SibReceiver custom", /// Description2 = "", /// FPSUnits = "----", /// MetricUnits = "---", /// Length = 4, /// ValueType = "F" /// [Column("Gx")] public float? Gx { get; set; } /// /// RecordId = 60, /// ItemId = 13, /// LongMnemonic = "Gy", /// ShortMnemonic = "Gy", /// Description = "SibReceiver custom", /// Description2 = "", /// FPSUnits = "----", /// MetricUnits = "---", /// Length = 4, /// ValueType = "F" /// [Column("Gy")] public float? Gy { get; set; } /// /// RecordId = 60, /// ItemId = 14, /// LongMnemonic = "Gz", /// ShortMnemonic = "Gz", /// Description = "SibReceiver custom", /// Description2 = "", /// FPSUnits = "----", /// MetricUnits = "---", /// Length = 4, /// ValueType = "F" /// [Column("Gz")] public float? Gz { get; set; } /// /// RecordId = 60, /// ItemId = 15, /// LongMnemonic = "Btot", /// ShortMnemonic = "Btot", /// Description = "SibReceiver custom", /// Description2 = "", /// FPSUnits = "----", /// MetricUnits = "---", /// Length = 4, /// ValueType = "F" /// [Column("Btot")] public float? Btot { get; set; } /// /// RecordId = 60, /// ItemId = 16, /// LongMnemonic = "Bx", /// ShortMnemonic = "Bx", /// Description = "SibReceiver custom", /// Description2 = "", /// FPSUnits = "----", /// MetricUnits = "---", /// Length = 4, /// ValueType = "F" /// [Column("Bx")] public float? Bx { get; set; } /// /// RecordId = 60, /// ItemId = 17, /// LongMnemonic = "By", /// ShortMnemonic = "By", /// Description = "SibReceiver custom", /// Description2 = "", /// FPSUnits = "----", /// MetricUnits = "---", /// Length = 4, /// ValueType = "F" /// [Column("By")] public float? By { get; set; } /// /// RecordId = 60, /// ItemId = 18, /// LongMnemonic = "Bz", /// ShortMnemonic = "Bz", /// Description = "SibReceiver custom", /// Description2 = "", /// FPSUnits = "----", /// MetricUnits = "---", /// Length = 4, /// ValueType = "F" /// [Column("Bz")] public float? Bz { get; set; } } }