using System.ComponentModel.DataAnnotations.Schema;
namespace AsbCloudDb.Model.WITS
{
///
/// Record name: Remarks
/// Description: Freeform Comments
/// Description2:
///
[Table("t_telemetry_wits_22")]
public class Record22 : RecordBase
{
///
/// RecordId = 22,
/// ItemId = 8,
/// LongMnemonic = "DEPTMEAS",
/// ShortMnemonic = "DMEA",
/// Description = "Depth Hole (meas)",
/// Description2 = "",
/// FPSUnits = "F",
/// MetricUnits = "M",
/// Length = 4,
/// ValueType = "F"
///
[Column("DEPTMEAS")]
public float? Deptmeas { get; set; }
///
/// RecordId = 22,
/// ItemId = 9,
/// LongMnemonic = "DEPTVERT",
/// ShortMnemonic = "DVER",
/// Description = "Depth Hole (vert)",
/// Description2 = "",
/// FPSUnits = "F",
/// MetricUnits = "M",
/// Length = 4,
/// ValueType = "F"
///
[Column("DEPTVERT")]
public float? Deptvert { get; set; }
///
/// RecordId = 22,
/// ItemId = 10,
/// LongMnemonic = "COMM",
/// ShortMnemonic = "COMM",
/// Description = "Comments",
/// Description2 = "",
/// FPSUnits = "----",
/// MetricUnits = "----",
/// Length = 256,
/// ValueType = "A"
///
[Column("COMM")]
public string? Comm { get; set; }
}
}