forked from ddrilling/AsbCloudServer
178 lines
4.2 KiB
C#
178 lines
4.2 KiB
C#
namespace AsbCloudApp.Data.WITS;
|
|
|
|
/// <summary>
|
|
/// Record name: Резистивиметр Corvet
|
|
/// Description: SibReciver. Резистивиметр Corvet
|
|
/// Description2:
|
|
/// </summary>
|
|
|
|
public class Record61Dto : RecordBaseDto
|
|
{
|
|
|
|
/// <summary>
|
|
/// RecordId = 61,
|
|
/// ItemId = 99,
|
|
/// LongMnemonic = "DEPTBITM",
|
|
/// ShortMnemonic = "DBTM",
|
|
/// Description = "SibReceiver custom. Положение долота",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "---",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
|
|
public float? Deptbitm { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 61,
|
|
/// ItemId = 10,
|
|
/// LongMnemonic = "DEPTMEAS",
|
|
/// ShortMnemonic = "DMEA",
|
|
/// Description = "SibReceiver custom. Точка Замера",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "---",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
|
|
public float? Deptmeas { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 61,
|
|
/// ItemId = 11,
|
|
/// LongMnemonic = "PHL1F1",
|
|
/// ShortMnemonic = "PHL1F1",
|
|
/// Description = "SibReceiver custom",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "---",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
|
|
public float? Phl1f1 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 61,
|
|
/// ItemId = 12,
|
|
/// LongMnemonic = "PHL1F2",
|
|
/// ShortMnemonic = "PHL1F2",
|
|
/// Description = "SibReceiver custom",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "---",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
|
|
public float? Phl1f2 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 61,
|
|
/// ItemId = 13,
|
|
/// LongMnemonic = "PHL2F1",
|
|
/// ShortMnemonic = "PHL2F1",
|
|
/// Description = "SibReceiver custom",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "---",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
|
|
public float? Phl2f1 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 61,
|
|
/// ItemId = 14,
|
|
/// LongMnemonic = "PHL2F2",
|
|
/// ShortMnemonic = "PHL2F2",
|
|
/// Description = "SibReceiver custom",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "---",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
|
|
public float? Phl2f2 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 61,
|
|
/// ItemId = 15,
|
|
/// LongMnemonic = "ATT06H",
|
|
/// ShortMnemonic = "ATT06H",
|
|
/// Description = "SibReceiver custom",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "---",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
|
|
public float? Att06h { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 61,
|
|
/// ItemId = 16,
|
|
/// LongMnemonic = "ATT06L",
|
|
/// ShortMnemonic = "ATT06L",
|
|
/// Description = "SibReceiver custom",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "---",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
|
|
public float? Att06l { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 61,
|
|
/// ItemId = 17,
|
|
/// LongMnemonic = "ATT10H",
|
|
/// ShortMnemonic = "ATT10H",
|
|
/// Description = "SibReceiver custom",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "---",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
|
|
public float? Att10h { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 61,
|
|
/// ItemId = 18,
|
|
/// LongMnemonic = "ATT10L",
|
|
/// ShortMnemonic = "ATT10L",
|
|
/// Description = "SibReceiver custom",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "---",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
|
|
public float? Att10l { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 61,
|
|
/// ItemId = 19,
|
|
/// LongMnemonic = "Status",
|
|
/// ShortMnemonic = "Status",
|
|
/// Description = "SibReceiver custom",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "---",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
|
|
public float? Status { get; set; }
|
|
|
|
}
|