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: Remarks
|
|
|
|
/// Description: Freeform Comments
|
|
|
|
/// Description2:
|
|
|
|
/// </summary>
|
|
|
|
[Table("t_telemetry_wits_22")]
|
|
|
|
public class Record22 : RecordBase
|
|
|
|
{
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 22,
|
|
|
|
/// ItemId = 8,
|
|
|
|
/// 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 = 22,
|
|
|
|
/// ItemId = 9,
|
|
|
|
/// 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 = 22,
|
|
|
|
/// ItemId = 10,
|
|
|
|
/// LongMnemonic = "COMM",
|
|
|
|
/// ShortMnemonic = "COMM",
|
|
|
|
/// Description = "Comments",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "----",
|
|
|
|
/// MetricUnits = "----",
|
|
|
|
/// Length = 256,
|
|
|
|
/// ValueType = "A"
|
|
|
|
/// </summary>
|
|
|
|
[Column("COMM")]
|
|
|
|
public string? Comm { get; set; }
|
|
|
|
|
|
|
|
}
|
2022-04-01 17:55:44 +05:00
|
|
|
}
|