2022-04-01 17:55:44 +05:00
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
|
|
namespace AsbCloudDb.Model.WITS
|
|
|
|
{
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// Record name: Drilling - Connections
|
|
|
|
/// Description: Data gathered at drilling connections
|
|
|
|
/// Description2:
|
|
|
|
/// </summary>
|
|
|
|
[Table("t_telemetry_wits_3")]
|
|
|
|
public class Record3 : RecordBase
|
|
|
|
{
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 3,
|
|
|
|
/// ItemId = 8,
|
|
|
|
/// LongMnemonic = "DEPTCONM",
|
|
|
|
/// ShortMnemonic = "DCNM",
|
|
|
|
/// Description = "Depth Connection (meas)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "F",
|
|
|
|
/// MetricUnits = "M",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("DEPTCONM")]
|
|
|
|
public float? Deptconm { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 3,
|
|
|
|
/// ItemId = 9,
|
|
|
|
/// LongMnemonic = "DEPTCONV",
|
|
|
|
/// ShortMnemonic = "DCNV",
|
|
|
|
/// Description = "Depth Connection (vert)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "F",
|
|
|
|
/// MetricUnits = "M",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("DEPTCONV")]
|
|
|
|
public float? Deptconv { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 3,
|
|
|
|
/// ItemId = 10,
|
|
|
|
/// LongMnemonic = "DEPTMEAS",
|
|
|
|
/// ShortMnemonic = "DMEA",
|
|
|
|
/// Description = "Depth Hole (meas)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "F",
|
|
|
|
/// MetricUnits = "M",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("DEPTMEAS")]
|
|
|
|
public float? Deptmeas { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 3,
|
|
|
|
/// ItemId = 11,
|
|
|
|
/// LongMnemonic = "DEPTVERT",
|
|
|
|
/// ShortMnemonic = "DVER",
|
|
|
|
/// Description = "Depth Hole (vert)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "F",
|
|
|
|
/// MetricUnits = "M",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("DEPTVERT")]
|
|
|
|
public float? Deptvert { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 3,
|
|
|
|
/// ItemId = 12,
|
|
|
|
/// LongMnemonic = "ETIMEBTS",
|
|
|
|
/// ShortMnemonic = "ETBS",
|
|
|
|
/// Description = "Elapsed Time Bottom-Slips",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "SEC",
|
|
|
|
/// MetricUnits = "SEC",
|
|
|
|
/// Length = 2,
|
|
|
|
/// ValueType = "S"
|
|
|
|
/// </summary>
|
|
|
|
[Column("ETIMEBTS")]
|
|
|
|
public short? Etimebts { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 3,
|
|
|
|
/// ItemId = 13,
|
|
|
|
/// LongMnemonic = "ETIMESLP",
|
|
|
|
/// ShortMnemonic = "ETSL",
|
|
|
|
/// Description = "Elapsed Time In-Slips",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "SEC",
|
|
|
|
/// MetricUnits = "SEC",
|
|
|
|
/// Length = 2,
|
|
|
|
/// ValueType = "S"
|
|
|
|
/// </summary>
|
|
|
|
[Column("ETIMESLP")]
|
|
|
|
public short? Etimeslp { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 3,
|
|
|
|
/// ItemId = 14,
|
|
|
|
/// LongMnemonic = "ETIMESTB",
|
|
|
|
/// ShortMnemonic = "ETSB",
|
|
|
|
/// Description = "Elapsed Time Slips-Bottom",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "SEC",
|
|
|
|
/// MetricUnits = "SEC",
|
|
|
|
/// Length = 2,
|
|
|
|
/// ValueType = "S"
|
|
|
|
/// </summary>
|
|
|
|
[Column("ETIMESTB")]
|
|
|
|
public short? Etimestb { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 3,
|
|
|
|
/// ItemId = 15,
|
|
|
|
/// LongMnemonic = "ETIMEPOF",
|
|
|
|
/// ShortMnemonic = "ETPO",
|
|
|
|
/// Description = "Elapsed Time Pumps-Off",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "SEC",
|
|
|
|
/// MetricUnits = "SEC",
|
|
|
|
/// Length = 2,
|
|
|
|
/// ValueType = "S"
|
|
|
|
/// </summary>
|
|
|
|
[Column("ETIMEPOF")]
|
|
|
|
public short? Etimepof { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 3,
|
|
|
|
/// ItemId = 16,
|
|
|
|
/// LongMnemonic = "RSUX",
|
|
|
|
/// ShortMnemonic = "RSUX",
|
|
|
|
/// Description = "Running Speed - up (max)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "FPM",
|
|
|
|
/// MetricUnits = "M/S",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("RSUX")]
|
|
|
|
public float? Rsux { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 3,
|
|
|
|
/// ItemId = 17,
|
|
|
|
/// LongMnemonic = "RSDX",
|
|
|
|
/// ShortMnemonic = "RSDX",
|
|
|
|
/// Description = "Running Speed - down (max)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "FPM",
|
|
|
|
/// MetricUnits = "M/S",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("RSDX")]
|
|
|
|
public float? Rsdx { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 3,
|
|
|
|
/// ItemId = 18,
|
|
|
|
/// LongMnemonic = "HKLX",
|
|
|
|
/// ShortMnemonic = "HKLX",
|
|
|
|
/// Description = "Hookload (max)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "KLB",
|
|
|
|
/// MetricUnits = "KDN",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("HKLX")]
|
|
|
|
public float? Hklx { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 3,
|
|
|
|
/// ItemId = 19,
|
|
|
|
/// LongMnemonic = "STRGWT",
|
|
|
|
/// ShortMnemonic = "STWT",
|
|
|
|
/// Description = "String Weight (rot,avg)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "KLB",
|
|
|
|
/// MetricUnits = "KDN",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("STRGWT")]
|
|
|
|
public float? Strgwt { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 3,
|
|
|
|
/// ItemId = 20,
|
|
|
|
/// LongMnemonic = "TORQMUX",
|
|
|
|
/// ShortMnemonic = "TQMX",
|
|
|
|
/// Description = "Torque - Make Up (max)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "KFLB",
|
|
|
|
/// MetricUnits = "KNM",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("TORQMUX")]
|
|
|
|
public float? Torqmux { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 3,
|
|
|
|
/// ItemId = 21,
|
|
|
|
/// LongMnemonic = "TORQBOX",
|
|
|
|
/// ShortMnemonic = "TQBX",
|
|
|
|
/// Description = "Torque - Breakout (max)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "KFLB",
|
|
|
|
/// MetricUnits = "KNM",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("TORQBOX")]
|
|
|
|
public float? Torqbox { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 3,
|
|
|
|
/// ItemId = 22,
|
|
|
|
/// LongMnemonic = "SPARE1",
|
|
|
|
/// ShortMnemonic = "SPR1",
|
|
|
|
/// Description = "< SPARE 1>",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "----",
|
|
|
|
/// MetricUnits = "----",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("SPARE1")]
|
|
|
|
public float? Spare1 { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 3,
|
|
|
|
/// ItemId = 23,
|
|
|
|
/// LongMnemonic = "SPARE2",
|
|
|
|
/// ShortMnemonic = "SPR2",
|
|
|
|
/// Description = "< SPARE 2>",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "----",
|
|
|
|
/// MetricUnits = "----",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("SPARE2")]
|
|
|
|
public float? Spare2 { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 3,
|
|
|
|
/// ItemId = 24,
|
|
|
|
/// LongMnemonic = "SPARE3",
|
|
|
|
/// ShortMnemonic = "SPR3",
|
|
|
|
/// Description = "< SPARE 3>",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "----",
|
|
|
|
/// MetricUnits = "----",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("SPARE3")]
|
|
|
|
public float? Spare3 { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 3,
|
|
|
|
/// ItemId = 25,
|
|
|
|
/// LongMnemonic = "SPARE4",
|
|
|
|
/// ShortMnemonic = "SPR4",
|
|
|
|
/// Description = "< SPARE 4>",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "----",
|
|
|
|
/// MetricUnits = "----",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("SPARE4")]
|
|
|
|
public float? Spare4 { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 3,
|
|
|
|
/// ItemId = 26,
|
|
|
|
/// LongMnemonic = "SPARE5",
|
|
|
|
/// ShortMnemonic = "SPR5",
|
|
|
|
/// Description = "< SPARE 5>",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "----",
|
|
|
|
/// MetricUnits = "----",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("SPARE5")]
|
|
|
|
public float? Spare5 { get; set; }
|
|
|
|
|
|
|
|
}
|
2022-04-01 17:55:44 +05:00
|
|
|
}
|