forked from ddrilling/AsbCloudServer
61 lines
1.3 KiB
C#
61 lines
1.3 KiB
C#
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
|
||
|
namespace AsbCloudDb.Model.WITS
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Record name: Remarks
|
||
|
/// Description: Freeform Comments
|
||
|
/// Description2:
|
||
|
/// </summary>
|
||
|
[Table("t_telemetry_wits_22")]
|
||
|
public class Record22: RecordBase {
|
||
|
|
||
|
/// <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; }
|
||
|
|
||
|
/// <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; }
|
||
|
|
||
|
/// <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; }
|
||
|
|
||
|
}
|
||
|
}
|