forked from ddrilling/AsbCloudServer
886 lines
25 KiB
C#
886 lines
25 KiB
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace AsbCloudDb.Model.WITS
|
|
{
|
|
/// <summary>
|
|
/// Record name: Mud Report
|
|
/// Description: Mud Report data
|
|
/// Description2:
|
|
/// </summary>
|
|
[Table("t_telemetry_wits_20")]
|
|
public class Record20 : RecordBase
|
|
{
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 8,
|
|
/// LongMnemonic = "MREPDM",
|
|
/// ShortMnemonic = "MRDM",
|
|
/// Description = "Mud Rept Depth (meas)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "F",
|
|
/// MetricUnits = "M",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MREPDM")]
|
|
public float? Mrepdm { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 9,
|
|
/// LongMnemonic = "MREPDV",
|
|
/// ShortMnemonic = "MRDV",
|
|
/// Description = "Mud Rept Depth (vert)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "F",
|
|
/// MetricUnits = "M",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MREPDV")]
|
|
public float? Mrepdv { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 10,
|
|
/// LongMnemonic = "MREPNUM",
|
|
/// ShortMnemonic = "MNUM",
|
|
/// Description = "Mud Rept Number",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "----",
|
|
/// Length = 2,
|
|
/// ValueType = "S"
|
|
/// </summary>
|
|
[Column("MREPNUM")]
|
|
public short? Mrepnum { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 11,
|
|
/// LongMnemonic = "MRMTYPE",
|
|
/// ShortMnemonic = "MTYP",
|
|
/// Description = "Mud Rept Mud Type",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "----",
|
|
/// Length = 16,
|
|
/// ValueType = "A"
|
|
/// </summary>
|
|
[Column("MRMTYPE")]
|
|
public string? Mrmtype { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 12,
|
|
/// LongMnemonic = "MRSLOC",
|
|
/// ShortMnemonic = "MLOC",
|
|
/// Description = "Mud Rept Sample Location",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "----",
|
|
/// Length = 8,
|
|
/// ValueType = "A"
|
|
/// </summary>
|
|
[Column("MRSLOC")]
|
|
public string? Mrsloc { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 13,
|
|
/// LongMnemonic = "MRSDATE",
|
|
/// ShortMnemonic = "MDAT",
|
|
/// Description = "Mud Rept Sample Date",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "----",
|
|
/// Length = 4,
|
|
/// ValueType = "L"
|
|
/// </summary>
|
|
[Column("MRSDATE")]
|
|
public int? Mrsdate { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 14,
|
|
/// LongMnemonic = "MRSTIME",
|
|
/// ShortMnemonic = "MTIM",
|
|
/// Description = "Mud Rept Sample Time",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "----",
|
|
/// Length = 4,
|
|
/// ValueType = "L"
|
|
/// </summary>
|
|
[Column("MRSTIME")]
|
|
public int? Mrstime { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 15,
|
|
/// LongMnemonic = "MRDENS",
|
|
/// ShortMnemonic = "MDEN",
|
|
/// Description = "Mud Rept Mud Density",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "PPG",
|
|
/// MetricUnits = "KGM3",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRDENS")]
|
|
public float? Mrdens { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 16,
|
|
/// LongMnemonic = "MRFVIS",
|
|
/// ShortMnemonic = "MFV",
|
|
/// Description = "Mud Rept Funnel Vis",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "S/QT",
|
|
/// MetricUnits = "S/L",
|
|
/// Length = 2,
|
|
/// ValueType = "S"
|
|
/// </summary>
|
|
[Column("MRFVIS")]
|
|
public short? Mrfvis { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 17,
|
|
/// LongMnemonic = "MRFVIST",
|
|
/// ShortMnemonic = "MFVT",
|
|
/// Description = "Mud Rept Funnel Vis Temp",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "DEGF",
|
|
/// MetricUnits = "DEGC",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRFVIST")]
|
|
public float? Mrfvist { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 18,
|
|
/// LongMnemonic = "MRPV",
|
|
/// ShortMnemonic = "MPV",
|
|
/// Description = "Mud Rept Plastic Vis",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "CP",
|
|
/// MetricUnits = "CP",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRPV")]
|
|
public float? Mrpv { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 19,
|
|
/// LongMnemonic = "MRYP",
|
|
/// ShortMnemonic = "MYP",
|
|
/// Description = "Mud Rept Yield Point",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "PHSF",
|
|
/// MetricUnits = "PA",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRYP")]
|
|
public float? Mryp { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 20,
|
|
/// LongMnemonic = "MRGEL10S",
|
|
/// ShortMnemonic = "MGL1",
|
|
/// Description = "Mud Rept Gel - 10 sec",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "PHSF",
|
|
/// MetricUnits = "PA",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRGEL10S")]
|
|
public float? Mrgel10s { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 21,
|
|
/// LongMnemonic = "MRGEL10M",
|
|
/// ShortMnemonic = "MGL2",
|
|
/// Description = "Mud Rept Gel - 10 min",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "PHSF",
|
|
/// MetricUnits = "PA",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRGEL10M")]
|
|
public float? Mrgel10m { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 22,
|
|
/// LongMnemonic = "MRGEL30M",
|
|
/// ShortMnemonic = "MGL3",
|
|
/// Description = "Mud Rept Gel - 30 min",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "PHSF",
|
|
/// MetricUnits = "PA",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRGEL30M")]
|
|
public float? Mrgel30m { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 23,
|
|
/// LongMnemonic = "MRFILT",
|
|
/// ShortMnemonic = "MFIL",
|
|
/// Description = "Mud Rept Filtrate",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "C/30",
|
|
/// MetricUnits = "C/30",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRFILT")]
|
|
public float? Mrfilt { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 24,
|
|
/// LongMnemonic = "MRCAKE",
|
|
/// ShortMnemonic = "MCAK",
|
|
/// Description = "Mud Rept Filter Cake",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "I/32",
|
|
/// MetricUnits = "MM",
|
|
/// Length = 2,
|
|
/// ValueType = "S"
|
|
/// </summary>
|
|
[Column("MRCAKE")]
|
|
public short? Mrcake { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 25,
|
|
/// LongMnemonic = "MRHT",
|
|
/// ShortMnemonic = "MHT",
|
|
/// Description = "Mud Rept HTHP Temp",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "DEGF",
|
|
/// MetricUnits = "DEGC",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRHT")]
|
|
public float? Mrht { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 26,
|
|
/// LongMnemonic = "MRHP",
|
|
/// ShortMnemonic = "MHP",
|
|
/// Description = "Mud Rept HTHP Pressure",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "PSI",
|
|
/// MetricUnits = "KPA",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRHP")]
|
|
public float? Mrhp { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 27,
|
|
/// LongMnemonic = "MRHFILT",
|
|
/// ShortMnemonic = "MHFI",
|
|
/// Description = "Mud Rept HTHP Filtrate",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "C/30",
|
|
/// MetricUnits = "C/30",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRHFILT")]
|
|
public float? Mrhfilt { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 28,
|
|
/// LongMnemonic = "MRHCAKE",
|
|
/// ShortMnemonic = "MHCK",
|
|
/// Description = "Mud Rept HTHP Filter Cake",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "I/32",
|
|
/// MetricUnits = "MM",
|
|
/// Length = 2,
|
|
/// ValueType = "S"
|
|
/// </summary>
|
|
[Column("MRHCAKE")]
|
|
public short? Mrhcake { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 29,
|
|
/// LongMnemonic = "MRSOLRET",
|
|
/// ShortMnemonic = "MSOL",
|
|
/// Description = "Mud Rept Solids % (retort)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "%",
|
|
/// MetricUnits = "%",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRSOLRET")]
|
|
public float? Mrsolret { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 30,
|
|
/// LongMnemonic = "MRWATRET",
|
|
/// ShortMnemonic = "MWAT",
|
|
/// Description = "Mud Rept Water % (retort)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "%",
|
|
/// MetricUnits = "%",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRWATRET")]
|
|
public float? Mrwatret { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 31,
|
|
/// LongMnemonic = "MROILRET",
|
|
/// ShortMnemonic = "MOIL",
|
|
/// Description = "Mud Rept Oil % (retort)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "%",
|
|
/// MetricUnits = "%",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MROILRET")]
|
|
public float? Mroilret { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 32,
|
|
/// LongMnemonic = "MRSAND",
|
|
/// ShortMnemonic = "MSAN",
|
|
/// Description = "Mud Rept Sand %",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "%",
|
|
/// MetricUnits = "%",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRSAND")]
|
|
public float? Mrsand { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 33,
|
|
/// LongMnemonic = "MRLGSOL",
|
|
/// ShortMnemonic = "MLGS",
|
|
/// Description = "Mud Rept Low Grav Sol %",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "%",
|
|
/// MetricUnits = "%",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRLGSOL")]
|
|
public float? Mrlgsol { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 34,
|
|
/// LongMnemonic = "MRSOLCAL",
|
|
/// ShortMnemonic = "MSCA",
|
|
/// Description = "Mud Rept Solids % (calc)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "%",
|
|
/// MetricUnits = "%",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRSOLCAL")]
|
|
public float? Mrsolcal { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 35,
|
|
/// LongMnemonic = "MRBARITE",
|
|
/// ShortMnemonic = "MBRT",
|
|
/// Description = "Mud Rept Barite content",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "%",
|
|
/// MetricUnits = "%",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRBARITE")]
|
|
public float? Mrbarite { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 36,
|
|
/// LongMnemonic = "MRLCM",
|
|
/// ShortMnemonic = "MLCM",
|
|
/// Description = "Mud Rept LCM content",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "PPB",
|
|
/// MetricUnits = "KGM3",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRLCM")]
|
|
public float? Mrlcm { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 37,
|
|
/// LongMnemonic = "MRMBT",
|
|
/// ShortMnemonic = "MMBT",
|
|
/// Description = "Mud Rept MBT capacity",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "PPB",
|
|
/// MetricUnits = "KGM3",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRMBT")]
|
|
public float? Mrmbt { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 38,
|
|
/// LongMnemonic = "MRPH",
|
|
/// ShortMnemonic = "MPH",
|
|
/// Description = "Mud Rept pH",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "----",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRPH")]
|
|
public float? Mrph { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 39,
|
|
/// LongMnemonic = "MRPHT",
|
|
/// ShortMnemonic = "MPHT",
|
|
/// Description = "Mud Rept pH sample temp",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "DEGF",
|
|
/// MetricUnits = "DEGC",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRPHT")]
|
|
public float? Mrpht { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 40,
|
|
/// LongMnemonic = "MRPM",
|
|
/// ShortMnemonic = "MPM",
|
|
/// Description = "Mud Rept Pm",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "MLML",
|
|
/// MetricUnits = "MLML",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRPM")]
|
|
public float? Mrpm { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 41,
|
|
/// LongMnemonic = "MRPF",
|
|
/// ShortMnemonic = "MPF",
|
|
/// Description = "Mud Rept Pf",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "MLML",
|
|
/// MetricUnits = "MLML",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRPF")]
|
|
public float? Mrpf { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 42,
|
|
/// LongMnemonic = "MRMF",
|
|
/// ShortMnemonic = "MMF",
|
|
/// Description = "Mud Rept Mf",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "MLML",
|
|
/// MetricUnits = "MLML",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRMF")]
|
|
public float? Mrmf { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 43,
|
|
/// LongMnemonic = "MRP1",
|
|
/// ShortMnemonic = "MRP1",
|
|
/// Description = "Mud Rept P1",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "MLML",
|
|
/// MetricUnits = "MLML",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRP1")]
|
|
public float? Mrp1 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 44,
|
|
/// LongMnemonic = "MRP2",
|
|
/// ShortMnemonic = "MRP2",
|
|
/// Description = "Mud Rept P2",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "MLML",
|
|
/// MetricUnits = "MLML",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRP2")]
|
|
public float? Mrp2 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 45,
|
|
/// LongMnemonic = "MRCHLOR",
|
|
/// ShortMnemonic = "MCHL",
|
|
/// Description = "Mud Rept Chlorides",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "MG/L",
|
|
/// MetricUnits = "MG/L",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRCHLOR")]
|
|
public float? Mrchlor { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 46,
|
|
/// LongMnemonic = "MRCALC",
|
|
/// ShortMnemonic = "MCAL",
|
|
/// Description = "Mud Rept Calcium",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "MG/L",
|
|
/// MetricUnits = "MG/L",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRCALC")]
|
|
public float? Mrcalc { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 47,
|
|
/// LongMnemonic = "MRMAG",
|
|
/// ShortMnemonic = "MMAG",
|
|
/// Description = "Mud Rept Magnesium",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "MG/L",
|
|
/// MetricUnits = "MG/L",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRMAG")]
|
|
public float? Mrmag { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 48,
|
|
/// LongMnemonic = "MRPOT",
|
|
/// ShortMnemonic = "MPOT",
|
|
/// Description = "Mud Rept Potassium",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "MG/L",
|
|
/// MetricUnits = "MG/L",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRPOT")]
|
|
public float? Mrpot { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 49,
|
|
/// LongMnemonic = "MRRHETEM",
|
|
/// ShortMnemonic = "MRHT",
|
|
/// Description = "Mud Rept Rheometer temp",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "DEGF",
|
|
/// MetricUnits = "DEGC",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRRHETEM")]
|
|
public float? Mrrhetem { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 50,
|
|
/// LongMnemonic = "MRVIS3",
|
|
/// ShortMnemonic = "M3",
|
|
/// Description = "Mud Rept Viscom 3 rpm",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "----",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRVIS3")]
|
|
public float? Mrvis3 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 51,
|
|
/// LongMnemonic = "MRVIS6",
|
|
/// ShortMnemonic = "M6",
|
|
/// Description = "Mud Rept Viscom 6 rpm",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "----",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRVIS6")]
|
|
public float? Mrvis6 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 52,
|
|
/// LongMnemonic = "MRVIS100",
|
|
/// ShortMnemonic = "M100",
|
|
/// Description = "Mud Rept Viscom 100 rpm",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "----",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRVIS100")]
|
|
public float? Mrvis100 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 53,
|
|
/// LongMnemonic = "MRVIS200",
|
|
/// ShortMnemonic = "M200",
|
|
/// Description = "Mud Rept Viscom 200 rpm",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "----",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRVIS200")]
|
|
public float? Mrvis200 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 54,
|
|
/// LongMnemonic = "MRVIS300",
|
|
/// ShortMnemonic = "M300",
|
|
/// Description = "Mud Rept Viscom 300 rpm",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "----",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRVIS300")]
|
|
public float? Mrvis300 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 55,
|
|
/// LongMnemonic = "MRVIS600",
|
|
/// ShortMnemonic = "M600",
|
|
/// Description = "Mud Rept Viscom 600 rpm",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "----",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRVIS600")]
|
|
public float? Mrvis600 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 56,
|
|
/// LongMnemonic = "MRBRINE",
|
|
/// ShortMnemonic = "MBRI",
|
|
/// Description = "Mud Rept Brine %",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "%",
|
|
/// MetricUnits = "%",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRBRINE")]
|
|
public float? Mrbrine { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 57,
|
|
/// LongMnemonic = "MRALK",
|
|
/// ShortMnemonic = "MALK",
|
|
/// Description = "Mud Rept Alkalinity",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "MLML",
|
|
/// MetricUnits = "MLML",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRALK")]
|
|
public float? Mralk { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 58,
|
|
/// LongMnemonic = "MRLIME",
|
|
/// ShortMnemonic = "MLIM",
|
|
/// Description = "Mud Rept Lime content",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "PPB",
|
|
/// MetricUnits = "KGM3",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRLIME")]
|
|
public float? Mrlime { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 59,
|
|
/// LongMnemonic = "MRELECST",
|
|
/// ShortMnemonic = "MELS",
|
|
/// Description = "Mud Rept Elect. Stability",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "V",
|
|
/// MetricUnits = "V",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRELECST")]
|
|
public float? Mrelecst { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 60,
|
|
/// LongMnemonic = "MRCACL",
|
|
/// ShortMnemonic = "MCCL",
|
|
/// Description = "Mud Rept CaCl, Wt %",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "%",
|
|
/// MetricUnits = "%",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MRCACL")]
|
|
public float? Mrcacl { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 61,
|
|
/// LongMnemonic = "SPARE1",
|
|
/// ShortMnemonic = "SPR1",
|
|
/// Description = "< SPARE 1>",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "----",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("SPARE1")]
|
|
public float? Spare1 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 62,
|
|
/// LongMnemonic = "SPARE2",
|
|
/// ShortMnemonic = "SPR2",
|
|
/// Description = "< SPARE 2>",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "----",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("SPARE2")]
|
|
public float? Spare2 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 63,
|
|
/// LongMnemonic = "SPARE3",
|
|
/// ShortMnemonic = "SPR3",
|
|
/// Description = "< SPARE 3>",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "----",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("SPARE3")]
|
|
public float? Spare3 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 64,
|
|
/// LongMnemonic = "SPARE4",
|
|
/// ShortMnemonic = "SPR4",
|
|
/// Description = "< SPARE 4>",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "----",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("SPARE4")]
|
|
public float? Spare4 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 20,
|
|
/// ItemId = 65,
|
|
/// LongMnemonic = "SPARE5",
|
|
/// ShortMnemonic = "SPR5",
|
|
/// Description = "< SPARE 5>",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "---",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("SPARE5")]
|
|
public float? Spare5 { get; set; }
|
|
|
|
}
|
|
}
|