forked from ddrilling/AsbCloudServer
grouping services and controllers
This commit is contained in:
parent
80434475db
commit
fa9486e44d
@ -7,7 +7,7 @@ namespace AsbCloudApp.Comparators
|
||||
public class ComparerIId : IComparer<IId>, IEqualityComparer<IId>
|
||||
{
|
||||
private static readonly ComparerIId instance = new ComparerIId();
|
||||
private ComparerIId(){}
|
||||
private ComparerIId() { }
|
||||
|
||||
public static ComparerIId GetInstance() => instance;
|
||||
|
||||
|
@ -1,10 +1,4 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace AsbCloudApp.Data
|
||||
namespace AsbCloudApp.Data
|
||||
{
|
||||
public class FileCategoryDto : IId
|
||||
{
|
||||
|
@ -14,6 +14,6 @@ namespace AsbCloudApp.Data
|
||||
public long Size { get; set; }
|
||||
public FilePublishInfoDto PublishInfo { get; set; }
|
||||
public UserDto Author { get; set; }
|
||||
public IEnumerable<FileMarkDto> FileMarks { get; set; }
|
||||
public IEnumerable<FileMarkDto> FileMarks { get; set; }
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
namespace AsbCloudApp.Data
|
||||
{
|
||||
public class PermissionDto: IId
|
||||
public class PermissionDto : IId
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
|
@ -1,4 +1,4 @@
|
||||
namespace AsbCloudApp.Data
|
||||
namespace AsbCloudApp.Data.SAUB
|
||||
{
|
||||
public class SetpointInfoDto
|
||||
{
|
@ -1,10 +1,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace AsbCloudApp.Data
|
||||
namespace AsbCloudApp.Data.SAUB
|
||||
{
|
||||
public class SetpointsRequestDto : IId
|
||||
{
|
@ -8,7 +8,7 @@ namespace AsbCloudApp.Data
|
||||
|
||||
public override bool Equals(object obj)
|
||||
{
|
||||
if(obj is SimpleTimezoneDto tTimeZone
|
||||
if (obj is SimpleTimezoneDto tTimeZone
|
||||
&& tTimeZone.Hours == Hours
|
||||
&& tTimeZone.TimezoneId == TimezoneId
|
||||
&& tTimeZone.IsOverride == IsOverride)
|
||||
|
@ -1,5 +1,4 @@
|
||||
using AsbCloudApp.Data.SAUB;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace AsbCloudApp.Data
|
||||
{
|
||||
|
@ -1,6 +1,6 @@
|
||||
namespace AsbCloudApp.Data
|
||||
{
|
||||
public class UserDto: IId
|
||||
public class UserDto : IId
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Login { get; set; }
|
||||
|
@ -1,6 +1,4 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace AsbCloudApp.Data
|
||||
namespace AsbCloudApp.Data
|
||||
{
|
||||
public class UserRegistrationDto : UserDto
|
||||
{
|
||||
|
@ -5,7 +5,7 @@ namespace AsbCloudApp.Data.WITS
|
||||
/// <summary>
|
||||
/// This is base class for all WITS-0 records
|
||||
/// </summary>
|
||||
public abstract class RecordBaseDto: ITelemetryData
|
||||
public abstract class RecordBaseDto : ITelemetryData
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
|
@ -5,12 +5,12 @@ namespace AsbCloudApp.Exceptions
|
||||
/// <summary>
|
||||
/// Argument validation fail Exception
|
||||
/// </summary>
|
||||
public class ArgumentInvalidException: Exception
|
||||
public class ArgumentInvalidException : Exception
|
||||
{
|
||||
public string ParamName { get; }
|
||||
|
||||
public ArgumentInvalidException(string message, string paramName = default)
|
||||
:base(message)
|
||||
: base(message)
|
||||
{
|
||||
ParamName = paramName;
|
||||
}
|
||||
|
@ -5,13 +5,13 @@ namespace AsbCloudApp.Exceptions
|
||||
/// <summary>
|
||||
/// Access denied exception
|
||||
/// </summary>
|
||||
public class ForbidException: Exception
|
||||
public class ForbidException : Exception
|
||||
{
|
||||
public ForbidException()
|
||||
:base(){}
|
||||
: base() { }
|
||||
|
||||
public ForbidException(string message)
|
||||
:base(message){}
|
||||
: base(message) { }
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -1,5 +1,4 @@
|
||||
using AsbCloudApp.Data;
|
||||
using System;
|
||||
using System;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
|
@ -1,8 +1,8 @@
|
||||
using AsbCloudApp.Data;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using AsbCloudApp.Data;
|
||||
|
||||
namespace AsbCloudApp.Services
|
||||
{
|
||||
|
@ -1,7 +1,7 @@
|
||||
using System.Collections.Generic;
|
||||
using AsbCloudApp.Data;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using AsbCloudApp.Data;
|
||||
|
||||
namespace AsbCloudApp.Services
|
||||
{
|
||||
|
@ -1,6 +1,5 @@
|
||||
using AsbCloudApp.Data;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
|
@ -1,5 +1,4 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace AsbCloudApp.Services
|
||||
{
|
||||
|
@ -1,6 +1,5 @@
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using System.IO;
|
||||
|
||||
namespace AsbCloudApp.Services
|
||||
{
|
||||
|
@ -1,8 +1,5 @@
|
||||
using AsbCloudApp.Data;
|
||||
using System;
|
||||
using AsbCloudApp.Data.SAUB;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
|
@ -1,5 +1,4 @@
|
||||
using AsbCloudApp.Data;
|
||||
using System;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
|
@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace AsbCloudApp.Services
|
||||
{
|
||||
public interface IWellService: ICrudService<WellDto>
|
||||
public interface IWellService : ICrudService<WellDto>
|
||||
{
|
||||
ITelemetryService TelemetryService { get; }
|
||||
|
||||
|
@ -7,7 +7,7 @@ using System.Threading.Tasks;
|
||||
namespace AsbCloudApp.Services
|
||||
{
|
||||
public interface IWitsRecordRepository<TDto>
|
||||
where TDto: ITelemetryData
|
||||
where TDto : ITelemetryData
|
||||
{
|
||||
Task SaveDataAsync(int idTelemetry, IEnumerable<TDto> dtos, CancellationToken token);
|
||||
Task<IEnumerable<TDto>> GetAsync(int idTelemetry, DateTime begin, DateTime end, CancellationToken token);
|
||||
|
@ -1,13 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Concurrent;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace AsbCloudApp.Services
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public class InstantDataRepository: ConcurrentDictionary<int, ConcurrentDictionary<Type, object>>
|
||||
public class InstantDataRepository : ConcurrentDictionary<int, ConcurrentDictionary<Type, object>>
|
||||
{
|
||||
}
|
||||
}
|
||||
|
@ -1,17 +1,11 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace AsbCloudApp
|
||||
{
|
||||
public class Tree<T> : Dictionary<T, Tree<T>>
|
||||
{
|
||||
public Tree()
|
||||
{}
|
||||
{ }
|
||||
|
||||
public Tree(T key, Tree<T> node = null)
|
||||
{
|
||||
@ -19,8 +13,8 @@ namespace AsbCloudApp
|
||||
}
|
||||
|
||||
public Tree(Tree<T> other)
|
||||
:base(other)
|
||||
{}
|
||||
: base(other)
|
||||
{ }
|
||||
|
||||
public Tree(IEnumerable<T> keys)
|
||||
{
|
||||
|
@ -51,7 +51,7 @@ namespace AsbCloudDb
|
||||
}
|
||||
}
|
||||
|
||||
interface IQueryStringFactory{}
|
||||
interface IQueryStringFactory { }
|
||||
|
||||
class QueryStringFactory<T> : IQueryStringFactory
|
||||
where T : class
|
||||
@ -104,7 +104,7 @@ namespace AsbCloudDb
|
||||
var list = items.ToList();
|
||||
for (var i = 0; i < list.Count; i++)
|
||||
{
|
||||
if(i > 0)
|
||||
if (i > 0)
|
||||
builder.Append(',');
|
||||
BuildRow(builder, list[i]);
|
||||
}
|
||||
@ -122,13 +122,13 @@ namespace AsbCloudDb
|
||||
|
||||
private static string FormatValue(object v)
|
||||
=> v switch
|
||||
{
|
||||
string vStr => $"'{vStr}'",
|
||||
DateTime vDate => $"'{FormatDateValue(vDate)}'",
|
||||
DateTimeOffset vDate => $"'{FormatDateValue(vDate.UtcDateTime)}'",
|
||||
IFormattable vFormattable=> FormatFormattableValue(vFormattable),
|
||||
_ => System.Text.Json.JsonSerializer.Serialize(v),
|
||||
};
|
||||
{
|
||||
string vStr => $"'{vStr}'",
|
||||
DateTime vDate => $"'{FormatDateValue(vDate)}'",
|
||||
DateTimeOffset vDate => $"'{FormatDateValue(vDate.UtcDateTime)}'",
|
||||
IFormattable vFormattable => FormatFormattableValue(vFormattable),
|
||||
_ => System.Text.Json.JsonSerializer.Serialize(v),
|
||||
};
|
||||
|
||||
private static string FormatFormattableValue(IFormattable v)
|
||||
=> v switch
|
||||
|
@ -1,6 +1,6 @@
|
||||
using System;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
||||
using System;
|
||||
|
||||
namespace AsbCloudDb.Migrations
|
||||
{
|
||||
|
@ -1,6 +1,6 @@
|
||||
using System;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
||||
using System;
|
||||
|
||||
namespace AsbCloudDb.Migrations
|
||||
{
|
||||
|
@ -1,6 +1,6 @@
|
||||
using System;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
||||
using System;
|
||||
|
||||
namespace AsbCloudDb.Migrations
|
||||
{
|
||||
|
@ -1,7 +1,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace AsbCloudDb.Migrations
|
||||
{
|
||||
|
@ -1,6 +1,6 @@
|
||||
using System.Collections.Generic;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace AsbCloudDb.Migrations
|
||||
{
|
||||
|
@ -1,6 +1,6 @@
|
||||
using System.Collections.Generic;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace AsbCloudDb.Migrations
|
||||
{
|
||||
|
@ -1,5 +1,5 @@
|
||||
using System;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
using System;
|
||||
|
||||
namespace AsbCloudDb.Migrations
|
||||
{
|
||||
|
@ -1,5 +1,5 @@
|
||||
using System;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
using System;
|
||||
|
||||
#nullable disable
|
||||
|
||||
|
@ -229,12 +229,14 @@ namespace AsbCloudDb.Model
|
||||
.HasConstraintName("t_relation_company_well_t_company_id_fk");
|
||||
});
|
||||
|
||||
modelBuilder.Entity<RelationUserRoleUserRole>(entity => {
|
||||
modelBuilder.Entity<RelationUserRoleUserRole>(entity =>
|
||||
{
|
||||
entity.HasKey(x => new { x.Id, x.IdInclude })
|
||||
.HasName("t_relation_user_role_user_role_pk");
|
||||
});
|
||||
|
||||
modelBuilder.Entity<RelationUserDrillingProgramPart>(entity => {
|
||||
modelBuilder.Entity<RelationUserDrillingProgramPart>(entity =>
|
||||
{
|
||||
entity.HasKey(x => new { x.IdUser, x.IdDrillingProgramPart })
|
||||
.HasName("t_relation_user_drilling_program_part_pk");
|
||||
});
|
||||
@ -258,8 +260,9 @@ namespace AsbCloudDb.Model
|
||||
entity.HasIndex(d => d.IdWellOperationCategory);
|
||||
});
|
||||
|
||||
modelBuilder.Entity<DrillingProgramPart>(entity => {
|
||||
entity.HasIndex(x => new { x.IdWell, x.IdFileCategory})
|
||||
modelBuilder.Entity<DrillingProgramPart>(entity =>
|
||||
{
|
||||
entity.HasIndex(x => new { x.IdWell, x.IdFileCategory })
|
||||
.IsUnique();
|
||||
});
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
using System;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.Text.Json.Serialization;
|
||||
|
@ -1,6 +1,6 @@
|
||||
using System;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.Text.Json.Serialization;
|
||||
|
@ -1,8 +1,8 @@
|
||||
using System;
|
||||
using System.Text.Json.Serialization;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace AsbCloudDb.Model
|
||||
{
|
||||
|
@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace AsbCloudDb.Model
|
||||
{
|
||||
public interface IAsbCloudDbContext: IDisposable
|
||||
public interface IAsbCloudDbContext : IDisposable
|
||||
{
|
||||
DbSet<Cluster> Clusters { get; set; }
|
||||
DbSet<Company> Companies { get; set; }
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
namespace AsbCloudDb.Model
|
||||
{
|
||||
public class RawData: Dictionary<string, object>
|
||||
public class RawData : Dictionary<string, object>
|
||||
{
|
||||
|
||||
}
|
||||
|
@ -1,6 +1,5 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace AsbCloudDb.Model
|
||||
{
|
||||
|
@ -1,6 +1,6 @@
|
||||
using System;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
|
@ -1,6 +1,5 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace AsbCloudDb.Model.WITS
|
||||
|
@ -1,405 +1,405 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace AsbCloudDb.Model.WITS
|
||||
{
|
||||
/// <summary>
|
||||
/// Record name: Pressure Evaluation
|
||||
/// Description: Pressure Evaluation data
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_10")]
|
||||
public class Record10: RecordBase {
|
||||
/// <summary>
|
||||
/// Record name: Pressure Evaluation
|
||||
/// Description: Pressure Evaluation data
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_10")]
|
||||
public class Record10 : RecordBase
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// 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 = 10,
|
||||
/// 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 = 10,
|
||||
/// 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 = 10,
|
||||
/// 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 = 10,
|
||||
/// ItemId = 10,
|
||||
/// LongMnemonic = "DEPTSAMM",
|
||||
/// ShortMnemonic = "DSAM",
|
||||
/// Description = "Depth Sample (meas)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTSAMM")]
|
||||
public float? Deptsamm { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 10,
|
||||
/// LongMnemonic = "DEPTSAMM",
|
||||
/// ShortMnemonic = "DSAM",
|
||||
/// Description = "Depth Sample (meas)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTSAMM")]
|
||||
public float? Deptsamm { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 11,
|
||||
/// LongMnemonic = "DEPTSAMV",
|
||||
/// ShortMnemonic = "DSAV",
|
||||
/// Description = "Depth Sample (vert)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTSAMV")]
|
||||
public float? Deptsamv { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 11,
|
||||
/// LongMnemonic = "DEPTSAMV",
|
||||
/// ShortMnemonic = "DSAV",
|
||||
/// Description = "Depth Sample (vert)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTSAMV")]
|
||||
public float? Deptsamv { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "FPOREPG",
|
||||
/// ShortMnemonic = "FPPG",
|
||||
/// Description = "Est. Form. Pore Press Grad.",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPG",
|
||||
/// MetricUnits = "KGM3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("FPOREPG")]
|
||||
public float? Fporepg { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "FPOREPG",
|
||||
/// ShortMnemonic = "FPPG",
|
||||
/// Description = "Est. Form. Pore Press Grad.",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPG",
|
||||
/// MetricUnits = "KGM3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("FPOREPG")]
|
||||
public float? Fporepg { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "FFRACPG",
|
||||
/// ShortMnemonic = "FFPG",
|
||||
/// Description = "Est. Form. Frac Press Grad.",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPG",
|
||||
/// MetricUnits = "KGM3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("FFRACPG")]
|
||||
public float? Ffracpg { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "FFRACPG",
|
||||
/// ShortMnemonic = "FFPG",
|
||||
/// Description = "Est. Form. Frac Press Grad.",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPG",
|
||||
/// MetricUnits = "KGM3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("FFRACPG")]
|
||||
public float? Ffracpg { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "FOBPG",
|
||||
/// ShortMnemonic = "FOPG",
|
||||
/// Description = "Est. Form. Overburden Grad.",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPG",
|
||||
/// MetricUnits = "KGM3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("FOBPG")]
|
||||
public float? Fobpg { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "FOBPG",
|
||||
/// ShortMnemonic = "FOPG",
|
||||
/// Description = "Est. Form. Overburden Grad.",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPG",
|
||||
/// MetricUnits = "KGM3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("FOBPG")]
|
||||
public float? Fobpg { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "KTOL",
|
||||
/// ShortMnemonic = "KTOL",
|
||||
/// Description = "Est. Kick Tolerance",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPG",
|
||||
/// MetricUnits = "KGM3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("KTOL")]
|
||||
public float? Ktol { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "KTOL",
|
||||
/// ShortMnemonic = "KTOL",
|
||||
/// Description = "Est. Kick Tolerance",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPG",
|
||||
/// MetricUnits = "KGM3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("KTOL")]
|
||||
public float? Ktol { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "PSIPX",
|
||||
/// ShortMnemonic = "PSIP",
|
||||
/// Description = "Max. Permitted SICP (init)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PSI",
|
||||
/// MetricUnits = "KPA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("PSIPX")]
|
||||
public float? Psipx { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "PSIPX",
|
||||
/// ShortMnemonic = "PSIP",
|
||||
/// Description = "Max. Permitted SICP (init)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PSI",
|
||||
/// MetricUnits = "KPA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("PSIPX")]
|
||||
public float? Psipx { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "CONNGASA",
|
||||
/// ShortMnemonic = "CGSA",
|
||||
/// Description = "Connection Gas (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "%",
|
||||
/// MetricUnits = "%",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CONNGASA")]
|
||||
public float? Conngasa { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "CONNGASA",
|
||||
/// ShortMnemonic = "CGSA",
|
||||
/// Description = "Connection Gas (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "%",
|
||||
/// MetricUnits = "%",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CONNGASA")]
|
||||
public float? Conngasa { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "CONNGASX",
|
||||
/// ShortMnemonic = "CGSX",
|
||||
/// Description = "Connection Gas (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "%",
|
||||
/// MetricUnits = "%",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CONNGASX")]
|
||||
public float? Conngasx { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "CONNGASX",
|
||||
/// ShortMnemonic = "CGSX",
|
||||
/// Description = "Connection Gas (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "%",
|
||||
/// MetricUnits = "%",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CONNGASX")]
|
||||
public float? Conngasx { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "CONNGASL",
|
||||
/// ShortMnemonic = "CGSL",
|
||||
/// Description = "Connection Gas (last)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "%",
|
||||
/// MetricUnits = "%",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CONNGASL")]
|
||||
public float? Conngasl { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "CONNGASL",
|
||||
/// ShortMnemonic = "CGSL",
|
||||
/// Description = "Connection Gas (last)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "%",
|
||||
/// MetricUnits = "%",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CONNGASL")]
|
||||
public float? Conngasl { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 20,
|
||||
/// LongMnemonic = "TRIPGAS",
|
||||
/// ShortMnemonic = "TGAS",
|
||||
/// Description = "Last Trip Gas",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "%",
|
||||
/// MetricUnits = "%",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TRIPGAS")]
|
||||
public float? Tripgas { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 20,
|
||||
/// LongMnemonic = "TRIPGAS",
|
||||
/// ShortMnemonic = "TGAS",
|
||||
/// Description = "Last Trip Gas",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "%",
|
||||
/// MetricUnits = "%",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TRIPGAS")]
|
||||
public float? Tripgas { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 21,
|
||||
/// LongMnemonic = "SHALEDEN",
|
||||
/// ShortMnemonic = "SDEN",
|
||||
/// Description = "Shale Density",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "G/CC",
|
||||
/// MetricUnits = "G/CC",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SHALEDEN")]
|
||||
public float? Shaleden { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 21,
|
||||
/// LongMnemonic = "SHALEDEN",
|
||||
/// ShortMnemonic = "SDEN",
|
||||
/// Description = "Shale Density",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "G/CC",
|
||||
/// MetricUnits = "G/CC",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SHALEDEN")]
|
||||
public float? Shaleden { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 22,
|
||||
/// LongMnemonic = "CEC",
|
||||
/// ShortMnemonic = "CEC",
|
||||
/// Description = "Cuttings CEC",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "MEHG",
|
||||
/// MetricUnits = "MEHG",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CEC")]
|
||||
public float? Cec { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 22,
|
||||
/// LongMnemonic = "CEC",
|
||||
/// ShortMnemonic = "CEC",
|
||||
/// Description = "Cuttings CEC",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "MEHG",
|
||||
/// MetricUnits = "MEHG",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CEC")]
|
||||
public float? Cec { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 23,
|
||||
/// LongMnemonic = "CAVINGS",
|
||||
/// ShortMnemonic = "CAV",
|
||||
/// Description = "Cavings %",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "%",
|
||||
/// MetricUnits = "%",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("CAVINGS")]
|
||||
public short? Cavings { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 23,
|
||||
/// LongMnemonic = "CAVINGS",
|
||||
/// ShortMnemonic = "CAV",
|
||||
/// Description = "Cavings %",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "%",
|
||||
/// MetricUnits = "%",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("CAVINGS")]
|
||||
public short? Cavings { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 24,
|
||||
/// LongMnemonic = "DXC",
|
||||
/// ShortMnemonic = "DXC",
|
||||
/// Description = "Corr. Drilling Exponent",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DXC")]
|
||||
public float? Dxc { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 24,
|
||||
/// LongMnemonic = "DXC",
|
||||
/// ShortMnemonic = "DXC",
|
||||
/// Description = "Corr. Drilling Exponent",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DXC")]
|
||||
public float? Dxc { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 25,
|
||||
/// LongMnemonic = "SPARE1",
|
||||
/// ShortMnemonic = "SPR1",
|
||||
/// Description = "< SPARE 1>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE1")]
|
||||
public float? Spare1 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 25,
|
||||
/// LongMnemonic = "SPARE1",
|
||||
/// ShortMnemonic = "SPR1",
|
||||
/// Description = "< SPARE 1>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE1")]
|
||||
public float? Spare1 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 26,
|
||||
/// LongMnemonic = "SPARE2",
|
||||
/// ShortMnemonic = "SPR2",
|
||||
/// Description = "< SPARE 2>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE2")]
|
||||
public float? Spare2 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 26,
|
||||
/// LongMnemonic = "SPARE2",
|
||||
/// ShortMnemonic = "SPR2",
|
||||
/// Description = "< SPARE 2>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE2")]
|
||||
public float? Spare2 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 27,
|
||||
/// LongMnemonic = "SPARE3",
|
||||
/// ShortMnemonic = "SPR3",
|
||||
/// Description = "< SPARE 3>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE3")]
|
||||
public float? Spare3 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 27,
|
||||
/// LongMnemonic = "SPARE3",
|
||||
/// ShortMnemonic = "SPR3",
|
||||
/// Description = "< SPARE 3>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE3")]
|
||||
public float? Spare3 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 28,
|
||||
/// LongMnemonic = "SPARE4",
|
||||
/// ShortMnemonic = "SPR4",
|
||||
/// Description = "< SPARE 4>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE4")]
|
||||
public float? Spare4 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 28,
|
||||
/// LongMnemonic = "SPARE4",
|
||||
/// ShortMnemonic = "SPR4",
|
||||
/// Description = "< SPARE 4>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE4")]
|
||||
public float? Spare4 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 29,
|
||||
/// LongMnemonic = "SPARE5",
|
||||
/// ShortMnemonic = "SPR5",
|
||||
/// Description = "< SPARE 5>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE5")]
|
||||
public float? Spare5 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 29,
|
||||
/// LongMnemonic = "SPARE5",
|
||||
/// ShortMnemonic = "SPR5",
|
||||
/// Description = "< SPARE 5>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE5")]
|
||||
public float? Spare5 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 30,
|
||||
/// LongMnemonic = "SPARE6",
|
||||
/// ShortMnemonic = "SPR6",
|
||||
/// Description = "< SPARE 6>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE6")]
|
||||
public float? Spare6 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 30,
|
||||
/// LongMnemonic = "SPARE6",
|
||||
/// ShortMnemonic = "SPR6",
|
||||
/// Description = "< SPARE 6>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE6")]
|
||||
public float? Spare6 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 31,
|
||||
/// LongMnemonic = "SPARE7",
|
||||
/// ShortMnemonic = "SPR7",
|
||||
/// Description = "< SPARE 7>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE7")]
|
||||
public float? Spare7 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 31,
|
||||
/// LongMnemonic = "SPARE7",
|
||||
/// ShortMnemonic = "SPR7",
|
||||
/// Description = "< SPARE 7>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE7")]
|
||||
public float? Spare7 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 32,
|
||||
/// LongMnemonic = "SPARE8",
|
||||
/// ShortMnemonic = "SPR8",
|
||||
/// Description = "< SPARE 8>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE8")]
|
||||
public float? Spare8 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 32,
|
||||
/// LongMnemonic = "SPARE8",
|
||||
/// ShortMnemonic = "SPR8",
|
||||
/// Description = "< SPARE 8>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE8")]
|
||||
public float? Spare8 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 33,
|
||||
/// LongMnemonic = "SPARE9",
|
||||
/// ShortMnemonic = "SPR9",
|
||||
/// Description = "< SPARE 9>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE9")]
|
||||
public float? Spare9 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 10,
|
||||
/// ItemId = 33,
|
||||
/// LongMnemonic = "SPARE9",
|
||||
/// ShortMnemonic = "SPR9",
|
||||
/// Description = "< SPARE 9>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE9")]
|
||||
public float? Spare9 { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,435 +1,435 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace AsbCloudDb.Model.WITS
|
||||
{
|
||||
/// <summary>
|
||||
/// Record name: Mud Tank Volumes
|
||||
/// Description: Mud Tank (Pit) Volume data
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_11")]
|
||||
public class Record11: RecordBase {
|
||||
/// <summary>
|
||||
/// Record name: Mud Tank Volumes
|
||||
/// Description: Mud Tank (Pit) Volume data
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_11")]
|
||||
public class Record11 : RecordBase
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// 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 = 11,
|
||||
/// 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 = 11,
|
||||
/// 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 = 11,
|
||||
/// 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 = 11,
|
||||
/// ItemId = 10,
|
||||
/// LongMnemonic = "TVOLTOT",
|
||||
/// ShortMnemonic = "TVT",
|
||||
/// Description = "Tank Volume (total)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOLTOT")]
|
||||
public float? Tvoltot { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 10,
|
||||
/// LongMnemonic = "TVOLTOT",
|
||||
/// ShortMnemonic = "TVT",
|
||||
/// Description = "Tank Volume (total)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOLTOT")]
|
||||
public float? Tvoltot { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 11,
|
||||
/// LongMnemonic = "TVOLACT",
|
||||
/// ShortMnemonic = "TVA",
|
||||
/// Description = "Tank Volume (active)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOLACT")]
|
||||
public float? Tvolact { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 11,
|
||||
/// LongMnemonic = "TVOLACT",
|
||||
/// ShortMnemonic = "TVA",
|
||||
/// Description = "Tank Volume (active)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOLACT")]
|
||||
public float? Tvolact { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "TVOLCTOT",
|
||||
/// ShortMnemonic = "TVCT",
|
||||
/// Description = "Tank Volume Change (total)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOLCTOT")]
|
||||
public float? Tvolctot { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "TVOLCTOT",
|
||||
/// ShortMnemonic = "TVCT",
|
||||
/// Description = "Tank Volume Change (total)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOLCTOT")]
|
||||
public float? Tvolctot { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "TVOLCACT",
|
||||
/// ShortMnemonic = "TVCA",
|
||||
/// Description = "Tank Volume Change (active)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOLCACT")]
|
||||
public float? Tvolcact { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "TVOLCACT",
|
||||
/// ShortMnemonic = "TVCA",
|
||||
/// Description = "Tank Volume Change (active)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOLCACT")]
|
||||
public float? Tvolcact { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "TVRESET",
|
||||
/// ShortMnemonic = "TVRT",
|
||||
/// Description = "Tank Volume Reset Time",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("TVRESET")]
|
||||
public int? Tvreset { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "TVRESET",
|
||||
/// ShortMnemonic = "TVRT",
|
||||
/// Description = "Tank Volume Reset Time",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("TVRESET")]
|
||||
public int? Tvreset { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "TVOL01",
|
||||
/// ShortMnemonic = "TV01",
|
||||
/// Description = "Tank 01 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOL01")]
|
||||
public float? Tvol01 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "TVOL01",
|
||||
/// ShortMnemonic = "TV01",
|
||||
/// Description = "Tank 01 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOL01")]
|
||||
public float? Tvol01 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "TVOL02",
|
||||
/// ShortMnemonic = "TV02",
|
||||
/// Description = "Tank 02 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOL02")]
|
||||
public float? Tvol02 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "TVOL02",
|
||||
/// ShortMnemonic = "TV02",
|
||||
/// Description = "Tank 02 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOL02")]
|
||||
public float? Tvol02 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "TVOL03",
|
||||
/// ShortMnemonic = "TV03",
|
||||
/// Description = "Tank 03 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOL03")]
|
||||
public float? Tvol03 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "TVOL03",
|
||||
/// ShortMnemonic = "TV03",
|
||||
/// Description = "Tank 03 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOL03")]
|
||||
public float? Tvol03 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "TVOL04",
|
||||
/// ShortMnemonic = "TV04",
|
||||
/// Description = "Tank 04 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOL04")]
|
||||
public float? Tvol04 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "TVOL04",
|
||||
/// ShortMnemonic = "TV04",
|
||||
/// Description = "Tank 04 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOL04")]
|
||||
public float? Tvol04 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "TVOL05",
|
||||
/// ShortMnemonic = "TV05",
|
||||
/// Description = "Tank 05 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOL05")]
|
||||
public float? Tvol05 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "TVOL05",
|
||||
/// ShortMnemonic = "TV05",
|
||||
/// Description = "Tank 05 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOL05")]
|
||||
public float? Tvol05 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 20,
|
||||
/// LongMnemonic = "TVOL06",
|
||||
/// ShortMnemonic = "TV06",
|
||||
/// Description = "Tank 06 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOL06")]
|
||||
public float? Tvol06 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 20,
|
||||
/// LongMnemonic = "TVOL06",
|
||||
/// ShortMnemonic = "TV06",
|
||||
/// Description = "Tank 06 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOL06")]
|
||||
public float? Tvol06 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 21,
|
||||
/// LongMnemonic = "TVOL07",
|
||||
/// ShortMnemonic = "TV07",
|
||||
/// Description = "Tank 07 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOL07")]
|
||||
public float? Tvol07 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 21,
|
||||
/// LongMnemonic = "TVOL07",
|
||||
/// ShortMnemonic = "TV07",
|
||||
/// Description = "Tank 07 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOL07")]
|
||||
public float? Tvol07 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 22,
|
||||
/// LongMnemonic = "TVOL08",
|
||||
/// ShortMnemonic = "TV08",
|
||||
/// Description = "Tank 08 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOL08")]
|
||||
public float? Tvol08 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 22,
|
||||
/// LongMnemonic = "TVOL08",
|
||||
/// ShortMnemonic = "TV08",
|
||||
/// Description = "Tank 08 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOL08")]
|
||||
public float? Tvol08 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 23,
|
||||
/// LongMnemonic = "TVOL09",
|
||||
/// ShortMnemonic = "TV09",
|
||||
/// Description = "Tank 09 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOL09")]
|
||||
public float? Tvol09 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 23,
|
||||
/// LongMnemonic = "TVOL09",
|
||||
/// ShortMnemonic = "TV09",
|
||||
/// Description = "Tank 09 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOL09")]
|
||||
public float? Tvol09 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 24,
|
||||
/// LongMnemonic = "TVOL10",
|
||||
/// ShortMnemonic = "TV10",
|
||||
/// Description = "Tank 10 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOL10")]
|
||||
public float? Tvol10 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 24,
|
||||
/// LongMnemonic = "TVOL10",
|
||||
/// ShortMnemonic = "TV10",
|
||||
/// Description = "Tank 10 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOL10")]
|
||||
public float? Tvol10 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 25,
|
||||
/// LongMnemonic = "TVOL11",
|
||||
/// ShortMnemonic = "TV11",
|
||||
/// Description = "Tank 11 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOL11")]
|
||||
public float? Tvol11 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 25,
|
||||
/// LongMnemonic = "TVOL11",
|
||||
/// ShortMnemonic = "TV11",
|
||||
/// Description = "Tank 11 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOL11")]
|
||||
public float? Tvol11 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 26,
|
||||
/// LongMnemonic = "TVOL12",
|
||||
/// ShortMnemonic = "TV12",
|
||||
/// Description = "Tank 12 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOL12")]
|
||||
public float? Tvol12 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 26,
|
||||
/// LongMnemonic = "TVOL12",
|
||||
/// ShortMnemonic = "TV12",
|
||||
/// Description = "Tank 12 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOL12")]
|
||||
public float? Tvol12 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 27,
|
||||
/// LongMnemonic = "TVOL13",
|
||||
/// ShortMnemonic = "TV13",
|
||||
/// Description = "Tank 13 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOL13")]
|
||||
public float? Tvol13 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 27,
|
||||
/// LongMnemonic = "TVOL13",
|
||||
/// ShortMnemonic = "TV13",
|
||||
/// Description = "Tank 13 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOL13")]
|
||||
public float? Tvol13 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 28,
|
||||
/// LongMnemonic = "TVOL14",
|
||||
/// ShortMnemonic = "TV14",
|
||||
/// Description = "Tank 14 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOL14")]
|
||||
public float? Tvol14 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 28,
|
||||
/// LongMnemonic = "TVOL14",
|
||||
/// ShortMnemonic = "TV14",
|
||||
/// Description = "Tank 14 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOL14")]
|
||||
public float? Tvol14 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 29,
|
||||
/// LongMnemonic = "TTVOL1",
|
||||
/// ShortMnemonic = "TTV1",
|
||||
/// Description = "Trip Tank 1 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TTVOL1")]
|
||||
public float? Ttvol1 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 29,
|
||||
/// LongMnemonic = "TTVOL1",
|
||||
/// ShortMnemonic = "TTV1",
|
||||
/// Description = "Trip Tank 1 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TTVOL1")]
|
||||
public float? Ttvol1 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 30,
|
||||
/// LongMnemonic = "TTVOL2",
|
||||
/// ShortMnemonic = "TTV2",
|
||||
/// Description = "Trip Tank 2 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TTVOL2")]
|
||||
public float? Ttvol2 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 30,
|
||||
/// LongMnemonic = "TTVOL2",
|
||||
/// ShortMnemonic = "TTV2",
|
||||
/// Description = "Trip Tank 2 Volume",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TTVOL2")]
|
||||
public float? Ttvol2 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 31,
|
||||
/// LongMnemonic = "SPARE1",
|
||||
/// ShortMnemonic = "SPR1",
|
||||
/// Description = "< SPARE 1>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE1")]
|
||||
public float? Spare1 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 31,
|
||||
/// LongMnemonic = "SPARE1",
|
||||
/// ShortMnemonic = "SPR1",
|
||||
/// Description = "< SPARE 1>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE1")]
|
||||
public float? Spare1 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 32,
|
||||
/// LongMnemonic = "SPARE2",
|
||||
/// ShortMnemonic = "SPR2",
|
||||
/// Description = "< SPARE 2>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE2")]
|
||||
public float? Spare2 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 32,
|
||||
/// LongMnemonic = "SPARE2",
|
||||
/// ShortMnemonic = "SPR2",
|
||||
/// Description = "< SPARE 2>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE2")]
|
||||
public float? Spare2 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 33,
|
||||
/// LongMnemonic = "SPARE3",
|
||||
/// ShortMnemonic = "SPR3",
|
||||
/// Description = "< SPARE 3>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE3")]
|
||||
public float? Spare3 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 33,
|
||||
/// LongMnemonic = "SPARE3",
|
||||
/// ShortMnemonic = "SPR3",
|
||||
/// Description = "< SPARE 3>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE3")]
|
||||
public float? Spare3 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 34,
|
||||
/// LongMnemonic = "SPARE4",
|
||||
/// ShortMnemonic = "SPR4",
|
||||
/// Description = "< SPARE 4>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE4")]
|
||||
public float? Spare4 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 34,
|
||||
/// LongMnemonic = "SPARE4",
|
||||
/// ShortMnemonic = "SPR4",
|
||||
/// Description = "< SPARE 4>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE4")]
|
||||
public float? Spare4 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 35,
|
||||
/// LongMnemonic = "SPARE5",
|
||||
/// ShortMnemonic = "SPR5",
|
||||
/// Description = "< SPARE 5>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE5")]
|
||||
public float? Spare5 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 11,
|
||||
/// ItemId = 35,
|
||||
/// LongMnemonic = "SPARE5",
|
||||
/// ShortMnemonic = "SPR5",
|
||||
/// Description = "< SPARE 5>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE5")]
|
||||
public float? Spare5 { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,330 +1,330 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace AsbCloudDb.Model.WITS
|
||||
{
|
||||
/// <summary>
|
||||
/// Record name: Chromatograph Cycle-Based
|
||||
/// Description: Chromatograph Cycle data
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_12")]
|
||||
public class Record12: RecordBase {
|
||||
/// <summary>
|
||||
/// Record name: Chromatograph Cycle-Based
|
||||
/// Description: Chromatograph Cycle data
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_12")]
|
||||
public class Record12 : RecordBase
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 8,
|
||||
/// LongMnemonic = "DEPTCHRM",
|
||||
/// ShortMnemonic = "DCHM",
|
||||
/// Description = "Depth Chrom Sample (meas)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTCHRM")]
|
||||
public float? Deptchrm { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 8,
|
||||
/// LongMnemonic = "DEPTCHRM",
|
||||
/// ShortMnemonic = "DCHM",
|
||||
/// Description = "Depth Chrom Sample (meas)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTCHRM")]
|
||||
public float? Deptchrm { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 9,
|
||||
/// LongMnemonic = "DEPTCHRV",
|
||||
/// ShortMnemonic = "DCHV",
|
||||
/// Description = "Depth Chrom Sample (vert)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTCHRV")]
|
||||
public float? Deptchrv { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 9,
|
||||
/// LongMnemonic = "DEPTCHRV",
|
||||
/// ShortMnemonic = "DCHV",
|
||||
/// Description = "Depth Chrom Sample (vert)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTCHRV")]
|
||||
public float? Deptchrv { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 10,
|
||||
/// LongMnemonic = "DATECHR",
|
||||
/// ShortMnemonic = "DCHR",
|
||||
/// Description = "Date Chrom Sample",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("DATECHR")]
|
||||
public int? Datechr { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 10,
|
||||
/// LongMnemonic = "DATECHR",
|
||||
/// ShortMnemonic = "DCHR",
|
||||
/// Description = "Date Chrom Sample",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("DATECHR")]
|
||||
public int? Datechr { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 11,
|
||||
/// LongMnemonic = "TIMECHR",
|
||||
/// ShortMnemonic = "TCHR",
|
||||
/// Description = "Time Chrom Sample",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("TIMECHR")]
|
||||
public int? Timechr { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 11,
|
||||
/// LongMnemonic = "TIMECHR",
|
||||
/// ShortMnemonic = "TCHR",
|
||||
/// Description = "Time Chrom Sample",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("TIMECHR")]
|
||||
public int? Timechr { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "METHANE",
|
||||
/// ShortMnemonic = "METH",
|
||||
/// Description = "Methane (C1)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("METHANE")]
|
||||
public int? Methane { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "METHANE",
|
||||
/// ShortMnemonic = "METH",
|
||||
/// Description = "Methane (C1)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("METHANE")]
|
||||
public int? Methane { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "ETHANE",
|
||||
/// ShortMnemonic = "ETH",
|
||||
/// Description = "Ethane (C2)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("ETHANE")]
|
||||
public int? Ethane { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "ETHANE",
|
||||
/// ShortMnemonic = "ETH",
|
||||
/// Description = "Ethane (C2)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("ETHANE")]
|
||||
public int? Ethane { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "PROPANE",
|
||||
/// ShortMnemonic = "PRP",
|
||||
/// Description = "Propane (C3)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("PROPANE")]
|
||||
public int? Propane { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "PROPANE",
|
||||
/// ShortMnemonic = "PRP",
|
||||
/// Description = "Propane (C3)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("PROPANE")]
|
||||
public int? Propane { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "IBUTANE",
|
||||
/// ShortMnemonic = "IBUT",
|
||||
/// Description = "Iso-Butane (IC4)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("IBUTANE")]
|
||||
public int? Ibutane { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "IBUTANE",
|
||||
/// ShortMnemonic = "IBUT",
|
||||
/// Description = "Iso-Butane (IC4)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("IBUTANE")]
|
||||
public int? Ibutane { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "NBUTANE",
|
||||
/// ShortMnemonic = "NBUT",
|
||||
/// Description = "Nor-Butane (NC4)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("NBUTANE")]
|
||||
public int? Nbutane { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "NBUTANE",
|
||||
/// ShortMnemonic = "NBUT",
|
||||
/// Description = "Nor-Butane (NC4)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("NBUTANE")]
|
||||
public int? Nbutane { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "IPENTANE",
|
||||
/// ShortMnemonic = "IPEN",
|
||||
/// Description = "Iso-Pentane (IC5)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("IPENTANE")]
|
||||
public int? Ipentane { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "IPENTANE",
|
||||
/// ShortMnemonic = "IPEN",
|
||||
/// Description = "Iso-Pentane (IC5)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("IPENTANE")]
|
||||
public int? Ipentane { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "NPENTANE",
|
||||
/// ShortMnemonic = "NPEN",
|
||||
/// Description = "Nor-Pentane (NC5)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("NPENTANE")]
|
||||
public int? Npentane { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "NPENTANE",
|
||||
/// ShortMnemonic = "NPEN",
|
||||
/// Description = "Nor-Pentane (NC5)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("NPENTANE")]
|
||||
public int? Npentane { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "EPENTANE",
|
||||
/// ShortMnemonic = "EPEN",
|
||||
/// Description = "Neo-Pentane (EC5)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("EPENTANE")]
|
||||
public int? Epentane { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "EPENTANE",
|
||||
/// ShortMnemonic = "EPEN",
|
||||
/// Description = "Neo-Pentane (EC5)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("EPENTANE")]
|
||||
public int? Epentane { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 20,
|
||||
/// LongMnemonic = "IHEXANE",
|
||||
/// ShortMnemonic = "IHEX",
|
||||
/// Description = "Iso-Hexane (IC6)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("IHEXANE")]
|
||||
public int? Ihexane { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 20,
|
||||
/// LongMnemonic = "IHEXANE",
|
||||
/// ShortMnemonic = "IHEX",
|
||||
/// Description = "Iso-Hexane (IC6)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("IHEXANE")]
|
||||
public int? Ihexane { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 21,
|
||||
/// LongMnemonic = "NHEXANE",
|
||||
/// ShortMnemonic = "NHEX",
|
||||
/// Description = "Nor-Hexane (NC6)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("NHEXANE")]
|
||||
public int? Nhexane { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 21,
|
||||
/// LongMnemonic = "NHEXANE",
|
||||
/// ShortMnemonic = "NHEX",
|
||||
/// Description = "Nor-Hexane (NC6)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("NHEXANE")]
|
||||
public int? Nhexane { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 22,
|
||||
/// LongMnemonic = "CO2",
|
||||
/// ShortMnemonic = "CO2",
|
||||
/// Description = "Carbon Dioxide",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("CO2")]
|
||||
public int? Co2 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 22,
|
||||
/// LongMnemonic = "CO2",
|
||||
/// ShortMnemonic = "CO2",
|
||||
/// Description = "Carbon Dioxide",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("CO2")]
|
||||
public int? Co2 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 23,
|
||||
/// LongMnemonic = "ACET",
|
||||
/// ShortMnemonic = "ACET",
|
||||
/// Description = "Acetylene",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("ACET")]
|
||||
public int? Acet { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 23,
|
||||
/// LongMnemonic = "ACET",
|
||||
/// ShortMnemonic = "ACET",
|
||||
/// Description = "Acetylene",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("ACET")]
|
||||
public int? Acet { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 24,
|
||||
/// LongMnemonic = "SPARE1",
|
||||
/// ShortMnemonic = "SPR1",
|
||||
/// Description = "< SPARE 1>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE1")]
|
||||
public float? Spare1 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 24,
|
||||
/// LongMnemonic = "SPARE1",
|
||||
/// ShortMnemonic = "SPR1",
|
||||
/// Description = "< SPARE 1>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE1")]
|
||||
public float? Spare1 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 25,
|
||||
/// LongMnemonic = "SPARE2",
|
||||
/// ShortMnemonic = "SPR2",
|
||||
/// Description = "< SPARE 2>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE2")]
|
||||
public float? Spare2 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 25,
|
||||
/// LongMnemonic = "SPARE2",
|
||||
/// ShortMnemonic = "SPR2",
|
||||
/// Description = "< SPARE 2>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE2")]
|
||||
public float? Spare2 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 26,
|
||||
/// LongMnemonic = "SPARE3",
|
||||
/// ShortMnemonic = "SPR3",
|
||||
/// Description = "< SPARE 3>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE3")]
|
||||
public float? Spare3 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 26,
|
||||
/// LongMnemonic = "SPARE3",
|
||||
/// ShortMnemonic = "SPR3",
|
||||
/// Description = "< SPARE 3>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE3")]
|
||||
public float? Spare3 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 27,
|
||||
/// LongMnemonic = "SPARE4",
|
||||
/// ShortMnemonic = "SPR4",
|
||||
/// Description = "< SPARE 4>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE4")]
|
||||
public float? Spare4 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 27,
|
||||
/// LongMnemonic = "SPARE4",
|
||||
/// ShortMnemonic = "SPR4",
|
||||
/// Description = "< SPARE 4>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE4")]
|
||||
public float? Spare4 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 28,
|
||||
/// LongMnemonic = "SPARE5",
|
||||
/// ShortMnemonic = "SPR5",
|
||||
/// Description = "< SPARE 5>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE5")]
|
||||
public float? Spare5 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 12,
|
||||
/// ItemId = 28,
|
||||
/// LongMnemonic = "SPARE5",
|
||||
/// ShortMnemonic = "SPR5",
|
||||
/// Description = "< SPARE 5>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE5")]
|
||||
public float? Spare5 { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,345 +1,345 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace AsbCloudDb.Model.WITS
|
||||
{
|
||||
/// <summary>
|
||||
/// Record name: Lagged Mud Properties
|
||||
/// Description: Mud Property data based returns depth increments
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_14")]
|
||||
public class Record14: RecordBase {
|
||||
/// <summary>
|
||||
/// Record name: Lagged Mud Properties
|
||||
/// Description: Mud Property data based returns depth increments
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_14")]
|
||||
public class Record14 : RecordBase
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 8,
|
||||
/// LongMnemonic = "DEPTRETM",
|
||||
/// ShortMnemonic = "DRTM",
|
||||
/// Description = "Depth Returns (meas)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTRETM")]
|
||||
public float? Deptretm { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 8,
|
||||
/// LongMnemonic = "DEPTRETM",
|
||||
/// ShortMnemonic = "DRTM",
|
||||
/// Description = "Depth Returns (meas)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTRETM")]
|
||||
public float? Deptretm { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 9,
|
||||
/// LongMnemonic = "DEPTRETV",
|
||||
/// ShortMnemonic = "DRTV",
|
||||
/// Description = "Depth Returns (vert)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTRETV")]
|
||||
public float? Deptretv { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 9,
|
||||
/// LongMnemonic = "DEPTRETV",
|
||||
/// ShortMnemonic = "DRTV",
|
||||
/// Description = "Depth Returns (vert)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTRETV")]
|
||||
public float? Deptretv { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 10,
|
||||
/// LongMnemonic = "MDIL",
|
||||
/// ShortMnemonic = "MDIL",
|
||||
/// Description = "Mud Density In (lagd)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPG",
|
||||
/// MetricUnits = "KGM3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MDIL")]
|
||||
public float? Mdil { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 10,
|
||||
/// LongMnemonic = "MDIL",
|
||||
/// ShortMnemonic = "MDIL",
|
||||
/// Description = "Mud Density In (lagd)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPG",
|
||||
/// MetricUnits = "KGM3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MDIL")]
|
||||
public float? Mdil { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 11,
|
||||
/// LongMnemonic = "MDOA",
|
||||
/// ShortMnemonic = "MDOA",
|
||||
/// Description = "Mud Density Out (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPG",
|
||||
/// MetricUnits = "KGM3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MDOA")]
|
||||
public float? Mdoa { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 11,
|
||||
/// LongMnemonic = "MDOA",
|
||||
/// ShortMnemonic = "MDOA",
|
||||
/// Description = "Mud Density Out (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPG",
|
||||
/// MetricUnits = "KGM3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MDOA")]
|
||||
public float? Mdoa { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "MTIL",
|
||||
/// ShortMnemonic = "MTIL",
|
||||
/// Description = "Mud Temperature In (lagd)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "DEGF",
|
||||
/// MetricUnits = "DEGC",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MTIL")]
|
||||
public float? Mtil { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "MTIL",
|
||||
/// ShortMnemonic = "MTIL",
|
||||
/// Description = "Mud Temperature In (lagd)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "DEGF",
|
||||
/// MetricUnits = "DEGC",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MTIL")]
|
||||
public float? Mtil { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "MTOA",
|
||||
/// ShortMnemonic = "MTOA",
|
||||
/// Description = "Mud Temperature Out (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "DEGF",
|
||||
/// MetricUnits = "DEGC",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MTOA")]
|
||||
public float? Mtoa { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "MTOA",
|
||||
/// ShortMnemonic = "MTOA",
|
||||
/// Description = "Mud Temperature Out (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "DEGF",
|
||||
/// MetricUnits = "DEGC",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MTOA")]
|
||||
public float? Mtoa { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "MCIL",
|
||||
/// ShortMnemonic = "MCIL",
|
||||
/// Description = "Mud Conductivity In (lagd)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "MMHO",
|
||||
/// MetricUnits = "MMHO",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MCIL")]
|
||||
public float? Mcil { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "MCIL",
|
||||
/// ShortMnemonic = "MCIL",
|
||||
/// Description = "Mud Conductivity In (lagd)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "MMHO",
|
||||
/// MetricUnits = "MMHO",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MCIL")]
|
||||
public float? Mcil { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "MCOA",
|
||||
/// ShortMnemonic = "MCOA",
|
||||
/// Description = "Mud Conductivity Out (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "MMHO",
|
||||
/// MetricUnits = "MMHO",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MCOA")]
|
||||
public float? Mcoa { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "MCOA",
|
||||
/// ShortMnemonic = "MCOA",
|
||||
/// Description = "Mud Conductivity Out (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "MMHO",
|
||||
/// MetricUnits = "MMHO",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MCOA")]
|
||||
public float? Mcoa { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "HSHPA",
|
||||
/// ShortMnemonic = "HHPA",
|
||||
/// Description = "Hyd.Sulfide Haz.Pot. (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("HSHPA")]
|
||||
public float? Hshpa { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "HSHPA",
|
||||
/// ShortMnemonic = "HHPA",
|
||||
/// Description = "Hyd.Sulfide Haz.Pot. (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("HSHPA")]
|
||||
public float? Hshpa { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "HSPHA",
|
||||
/// ShortMnemonic = "HPHA",
|
||||
/// Description = "Hyd.Sulfide pH (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("HSPHA")]
|
||||
public float? Hspha { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "HSPHA",
|
||||
/// ShortMnemonic = "HPHA",
|
||||
/// Description = "Hyd.Sulfide pH (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("HSPHA")]
|
||||
public float? Hspha { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "HSPHSA",
|
||||
/// ShortMnemonic = "HPSA",
|
||||
/// Description = "Hyd.Sulfide pHS (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "%",
|
||||
/// MetricUnits = "%",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("HSPHSA")]
|
||||
public float? Hsphsa { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "HSPHSA",
|
||||
/// ShortMnemonic = "HPSA",
|
||||
/// Description = "Hyd.Sulfide pHS (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "%",
|
||||
/// MetricUnits = "%",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("HSPHSA")]
|
||||
public float? Hsphsa { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "GASIL",
|
||||
/// ShortMnemonic = "GSIL",
|
||||
/// Description = "Gas In (lagd)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "%",
|
||||
/// MetricUnits = "%",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("GASIL")]
|
||||
public float? Gasil { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "GASIL",
|
||||
/// ShortMnemonic = "GSIL",
|
||||
/// Description = "Gas In (lagd)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "%",
|
||||
/// MetricUnits = "%",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("GASIL")]
|
||||
public float? Gasil { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 20,
|
||||
/// LongMnemonic = "GASA",
|
||||
/// ShortMnemonic = "GASA",
|
||||
/// Description = "Gas (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "%",
|
||||
/// MetricUnits = "%",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("GASA")]
|
||||
public float? Gasa { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 20,
|
||||
/// LongMnemonic = "GASA",
|
||||
/// ShortMnemonic = "GASA",
|
||||
/// Description = "Gas (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "%",
|
||||
/// MetricUnits = "%",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("GASA")]
|
||||
public float? Gasa { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 21,
|
||||
/// LongMnemonic = "GASX",
|
||||
/// ShortMnemonic = "GASX",
|
||||
/// Description = "Gas (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "%",
|
||||
/// MetricUnits = "%",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("GASX")]
|
||||
public float? Gasx { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 21,
|
||||
/// LongMnemonic = "GASX",
|
||||
/// ShortMnemonic = "GASX",
|
||||
/// Description = "Gas (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "%",
|
||||
/// MetricUnits = "%",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("GASX")]
|
||||
public float? Gasx { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 22,
|
||||
/// LongMnemonic = "CO2A",
|
||||
/// ShortMnemonic = "CO2A",
|
||||
/// Description = "Carbon Dioxide (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("CO2A")]
|
||||
public int? Co2a { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 22,
|
||||
/// LongMnemonic = "CO2A",
|
||||
/// ShortMnemonic = "CO2A",
|
||||
/// Description = "Carbon Dioxide (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("CO2A")]
|
||||
public int? Co2a { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 23,
|
||||
/// LongMnemonic = "HSA",
|
||||
/// ShortMnemonic = "HSA",
|
||||
/// Description = "Hydrogen Sulfide (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("HSA")]
|
||||
public int? Hsa { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 23,
|
||||
/// LongMnemonic = "HSA",
|
||||
/// ShortMnemonic = "HSA",
|
||||
/// Description = "Hydrogen Sulfide (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("HSA")]
|
||||
public int? Hsa { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 24,
|
||||
/// LongMnemonic = "HSX",
|
||||
/// ShortMnemonic = "HSX",
|
||||
/// Description = "Hydrogen Sulfide (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("HSX")]
|
||||
public int? Hsx { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 24,
|
||||
/// LongMnemonic = "HSX",
|
||||
/// ShortMnemonic = "HSX",
|
||||
/// Description = "Hydrogen Sulfide (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("HSX")]
|
||||
public int? Hsx { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 25,
|
||||
/// LongMnemonic = "SPARE1",
|
||||
/// ShortMnemonic = "SPR1",
|
||||
/// Description = "< SPARE 1>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE1")]
|
||||
public float? Spare1 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 25,
|
||||
/// LongMnemonic = "SPARE1",
|
||||
/// ShortMnemonic = "SPR1",
|
||||
/// Description = "< SPARE 1>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE1")]
|
||||
public float? Spare1 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 26,
|
||||
/// LongMnemonic = "SPARE2",
|
||||
/// ShortMnemonic = "SPR2",
|
||||
/// Description = "< SPARE 2>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE2")]
|
||||
public float? Spare2 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 26,
|
||||
/// LongMnemonic = "SPARE2",
|
||||
/// ShortMnemonic = "SPR2",
|
||||
/// Description = "< SPARE 2>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE2")]
|
||||
public float? Spare2 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 27,
|
||||
/// LongMnemonic = "SPARE3",
|
||||
/// ShortMnemonic = "SPR3",
|
||||
/// Description = "< SPARE 3>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE3")]
|
||||
public float? Spare3 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 27,
|
||||
/// LongMnemonic = "SPARE3",
|
||||
/// ShortMnemonic = "SPR3",
|
||||
/// Description = "< SPARE 3>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE3")]
|
||||
public float? Spare3 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 28,
|
||||
/// LongMnemonic = "SPARE4",
|
||||
/// ShortMnemonic = "SPR4",
|
||||
/// Description = "< SPARE 4>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE4")]
|
||||
public float? Spare4 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 28,
|
||||
/// LongMnemonic = "SPARE4",
|
||||
/// ShortMnemonic = "SPR4",
|
||||
/// Description = "< SPARE 4>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE4")]
|
||||
public float? Spare4 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 29,
|
||||
/// LongMnemonic = "SPARE5",
|
||||
/// ShortMnemonic = "SPR5",
|
||||
/// Description = "< SPARE 5>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE5")]
|
||||
public float? Spare5 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 14,
|
||||
/// ItemId = 29,
|
||||
/// LongMnemonic = "SPARE5",
|
||||
/// ShortMnemonic = "SPR5",
|
||||
/// Description = "< SPARE 5>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE5")]
|
||||
public float? Spare5 { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,480 +1,480 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace AsbCloudDb.Model.WITS
|
||||
{
|
||||
/// <summary>
|
||||
/// Record name: Cementing
|
||||
/// Description: Well Cementing operations data
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_17")]
|
||||
public class Record17: RecordBase {
|
||||
/// <summary>
|
||||
/// Record name: Cementing
|
||||
/// Description: Well Cementing operations data
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_17")]
|
||||
public class Record17 : RecordBase
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// 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 = 17,
|
||||
/// 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 = 17,
|
||||
/// 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 = 17,
|
||||
/// 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 = 17,
|
||||
/// ItemId = 10,
|
||||
/// LongMnemonic = "DEPTCSGM",
|
||||
/// ShortMnemonic = "DCGM",
|
||||
/// Description = "Depth Casing Shoe (meas)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTCSGM")]
|
||||
public float? Deptcsgm { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 10,
|
||||
/// LongMnemonic = "DEPTCSGM",
|
||||
/// ShortMnemonic = "DCGM",
|
||||
/// Description = "Depth Casing Shoe (meas)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTCSGM")]
|
||||
public float? Deptcsgm { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 11,
|
||||
/// LongMnemonic = "DEPTCSGV",
|
||||
/// ShortMnemonic = "DCGV",
|
||||
/// Description = "Depth Casing Shoe (vert)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTCSGV")]
|
||||
public float? Deptcsgv { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 11,
|
||||
/// LongMnemonic = "DEPTCSGV",
|
||||
/// ShortMnemonic = "DCGV",
|
||||
/// Description = "Depth Casing Shoe (vert)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTCSGV")]
|
||||
public float? Deptcsgv { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "CEMPPA",
|
||||
/// ShortMnemonic = "CPPA",
|
||||
/// Description = "Cem Pump Pressure (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PSI",
|
||||
/// MetricUnits = "KPA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CEMPPA")]
|
||||
public float? Cemppa { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "CEMPPA",
|
||||
/// ShortMnemonic = "CPPA",
|
||||
/// Description = "Cem Pump Pressure (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PSI",
|
||||
/// MetricUnits = "KPA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CEMPPA")]
|
||||
public float? Cemppa { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "HKLA",
|
||||
/// ShortMnemonic = "HKLA",
|
||||
/// Description = "Hookload (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KLB",
|
||||
/// MetricUnits = "KDN",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("HKLA")]
|
||||
public float? Hkla { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "HKLA",
|
||||
/// ShortMnemonic = "HKLA",
|
||||
/// Description = "Hookload (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KLB",
|
||||
/// MetricUnits = "KDN",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("HKLA")]
|
||||
public float? Hkla { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "BLKPOS",
|
||||
/// ShortMnemonic = "BPOS",
|
||||
/// Description = "Block Position",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("BLKPOS")]
|
||||
public float? Blkpos { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "BLKPOS",
|
||||
/// ShortMnemonic = "BPOS",
|
||||
/// Description = "Block Position",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("BLKPOS")]
|
||||
public float? Blkpos { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "CEMFIC",
|
||||
/// ShortMnemonic = "CFIC",
|
||||
/// Description = "Cem Flow Rate In (calc)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BPM",
|
||||
/// MetricUnits = "M3/M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CEMFIC")]
|
||||
public float? Cemfic { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "CEMFIC",
|
||||
/// ShortMnemonic = "CFIC",
|
||||
/// Description = "Cem Flow Rate In (calc)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BPM",
|
||||
/// MetricUnits = "M3/M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CEMFIC")]
|
||||
public float? Cemfic { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "CEMFIA",
|
||||
/// ShortMnemonic = "CFIA",
|
||||
/// Description = "Cem Flow Rate In (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BPM",
|
||||
/// MetricUnits = "M3/M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CEMFIA")]
|
||||
public float? Cemfia { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "CEMFIA",
|
||||
/// ShortMnemonic = "CFIA",
|
||||
/// Description = "Cem Flow Rate In (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BPM",
|
||||
/// MetricUnits = "M3/M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CEMFIA")]
|
||||
public float? Cemfia { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "CEMFOA",
|
||||
/// ShortMnemonic = "CFOA",
|
||||
/// Description = "Cem Flow Rate Out (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BPM",
|
||||
/// MetricUnits = "M3/M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CEMFOA")]
|
||||
public float? Cemfoa { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "CEMFOA",
|
||||
/// ShortMnemonic = "CFOA",
|
||||
/// Description = "Cem Flow Rate Out (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BPM",
|
||||
/// MetricUnits = "M3/M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CEMFOA")]
|
||||
public float? Cemfoa { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "CEMFOP",
|
||||
/// ShortMnemonic = "CFOP",
|
||||
/// Description = "Cem Flow Out %",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "%",
|
||||
/// MetricUnits = "%",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("CEMFOP")]
|
||||
public short? Cemfop { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "CEMFOP",
|
||||
/// ShortMnemonic = "CFOP",
|
||||
/// Description = "Cem Flow Out %",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "%",
|
||||
/// MetricUnits = "%",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("CEMFOP")]
|
||||
public short? Cemfop { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "CEMDIA",
|
||||
/// ShortMnemonic = "CDIA",
|
||||
/// Description = "Cem Fluid Dens In (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPG",
|
||||
/// MetricUnits = "KGM3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CEMDIA")]
|
||||
public float? Cemdia { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "CEMDIA",
|
||||
/// ShortMnemonic = "CDIA",
|
||||
/// Description = "Cem Fluid Dens In (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPG",
|
||||
/// MetricUnits = "KGM3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CEMDIA")]
|
||||
public float? Cemdia { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 20,
|
||||
/// LongMnemonic = "CEMDOA",
|
||||
/// ShortMnemonic = "CDOA",
|
||||
/// Description = "Cem Fluid Dens Out (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPG",
|
||||
/// MetricUnits = "KGM3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CEMDOA")]
|
||||
public float? Cemdoa { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 20,
|
||||
/// LongMnemonic = "CEMDOA",
|
||||
/// ShortMnemonic = "CDOA",
|
||||
/// Description = "Cem Fluid Dens Out (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPG",
|
||||
/// MetricUnits = "KGM3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CEMDOA")]
|
||||
public float? Cemdoa { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 21,
|
||||
/// LongMnemonic = "ECDCSG",
|
||||
/// ShortMnemonic = "ECDC",
|
||||
/// Description = "ECD at Casing Shoe",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPG",
|
||||
/// MetricUnits = "KGM3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("ECDCSG")]
|
||||
public float? Ecdcsg { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 21,
|
||||
/// LongMnemonic = "ECDCSG",
|
||||
/// ShortMnemonic = "ECDC",
|
||||
/// Description = "ECD at Casing Shoe",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPG",
|
||||
/// MetricUnits = "KGM3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("ECDCSG")]
|
||||
public float? Ecdcsg { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 22,
|
||||
/// LongMnemonic = "CEMTIA",
|
||||
/// ShortMnemonic = "CTIA",
|
||||
/// Description = "Cem Fluid Temp In (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "DEGF",
|
||||
/// MetricUnits = "DEGC",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CEMTIA")]
|
||||
public float? Cemtia { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 22,
|
||||
/// LongMnemonic = "CEMTIA",
|
||||
/// ShortMnemonic = "CTIA",
|
||||
/// Description = "Cem Fluid Temp In (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "DEGF",
|
||||
/// MetricUnits = "DEGC",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CEMTIA")]
|
||||
public float? Cemtia { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 23,
|
||||
/// LongMnemonic = "CEMTOA",
|
||||
/// ShortMnemonic = "CTOA",
|
||||
/// Description = "Cem Fluid Temp Out (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "DEGF",
|
||||
/// MetricUnits = "DEGC",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CEMTOA")]
|
||||
public float? Cemtoa { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 23,
|
||||
/// LongMnemonic = "CEMTOA",
|
||||
/// ShortMnemonic = "CTOA",
|
||||
/// Description = "Cem Fluid Temp Out (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "DEGF",
|
||||
/// MetricUnits = "DEGC",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CEMTOA")]
|
||||
public float? Cemtoa { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 24,
|
||||
/// LongMnemonic = "CEMSTAGE",
|
||||
/// ShortMnemonic = "CSTG",
|
||||
/// Description = "Cem Stage Number",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("CEMSTAGE")]
|
||||
public short? Cemstage { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 24,
|
||||
/// LongMnemonic = "CEMSTAGE",
|
||||
/// ShortMnemonic = "CSTG",
|
||||
/// Description = "Cem Stage Number",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("CEMSTAGE")]
|
||||
public short? Cemstage { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 25,
|
||||
/// LongMnemonic = "DEPTDVT",
|
||||
/// ShortMnemonic = "DDVT",
|
||||
/// Description = "Cem Depth to DV Tool",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTDVT")]
|
||||
public float? Deptdvt { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 25,
|
||||
/// LongMnemonic = "DEPTDVT",
|
||||
/// ShortMnemonic = "DDVT",
|
||||
/// Description = "Cem Depth to DV Tool",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTDVT")]
|
||||
public float? Deptdvt { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 26,
|
||||
/// LongMnemonic = "CEMFTYPE",
|
||||
/// ShortMnemonic = "CTYP",
|
||||
/// Description = "Cem Fluid Type/Batch",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 16,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("CEMFTYPE")]
|
||||
public string? Cemftype { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 26,
|
||||
/// LongMnemonic = "CEMFTYPE",
|
||||
/// ShortMnemonic = "CTYP",
|
||||
/// Description = "Cem Fluid Type/Batch",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 16,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("CEMFTYPE")]
|
||||
public string? Cemftype { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 27,
|
||||
/// LongMnemonic = "CEMCUMRT",
|
||||
/// ShortMnemonic = "CCRT",
|
||||
/// Description = "Cem Cumulative Returns",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CEMCUMRT")]
|
||||
public float? Cemcumrt { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 27,
|
||||
/// LongMnemonic = "CEMCUMRT",
|
||||
/// ShortMnemonic = "CCRT",
|
||||
/// Description = "Cem Cumulative Returns",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CEMCUMRT")]
|
||||
public float? Cemcumrt { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 28,
|
||||
/// LongMnemonic = "CEMIVOL",
|
||||
/// ShortMnemonic = "CIVL",
|
||||
/// Description = "Cem Indiv Vol Pumped",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CEMIVOL")]
|
||||
public float? Cemivol { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 28,
|
||||
/// LongMnemonic = "CEMIVOL",
|
||||
/// ShortMnemonic = "CIVL",
|
||||
/// Description = "Cem Indiv Vol Pumped",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CEMIVOL")]
|
||||
public float? Cemivol { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 29,
|
||||
/// LongMnemonic = "CEMCVOL",
|
||||
/// ShortMnemonic = "CCVL",
|
||||
/// Description = "Cem Cement Vol Pumped",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CEMCVOL")]
|
||||
public float? Cemcvol { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 29,
|
||||
/// LongMnemonic = "CEMCVOL",
|
||||
/// ShortMnemonic = "CCVL",
|
||||
/// Description = "Cem Cement Vol Pumped",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CEMCVOL")]
|
||||
public float? Cemcvol { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 30,
|
||||
/// LongMnemonic = "CEMTVOL",
|
||||
/// ShortMnemonic = "CTVL",
|
||||
/// Description = "Cem Total Vol Pumped",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CEMTVOL")]
|
||||
public float? Cemtvol { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 30,
|
||||
/// LongMnemonic = "CEMTVOL",
|
||||
/// ShortMnemonic = "CTVL",
|
||||
/// Description = "Cem Total Vol Pumped",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CEMTVOL")]
|
||||
public float? Cemtvol { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 31,
|
||||
/// LongMnemonic = "CEMBPVOL",
|
||||
/// ShortMnemonic = "CBVL",
|
||||
/// Description = "Cem Volume to Bump Plug",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CEMBPVOL")]
|
||||
public float? Cembpvol { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 31,
|
||||
/// LongMnemonic = "CEMBPVOL",
|
||||
/// ShortMnemonic = "CBVL",
|
||||
/// Description = "Cem Volume to Bump Plug",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CEMBPVOL")]
|
||||
public float? Cembpvol { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 32,
|
||||
/// LongMnemonic = "CEMPLUGS",
|
||||
/// ShortMnemonic = "CPLG",
|
||||
/// Description = "Cem No./Status of Plug(s)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 8,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("CEMPLUGS")]
|
||||
public string? Cemplugs { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 32,
|
||||
/// LongMnemonic = "CEMPLUGS",
|
||||
/// ShortMnemonic = "CPLG",
|
||||
/// Description = "Cem No./Status of Plug(s)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 8,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("CEMPLUGS")]
|
||||
public string? Cemplugs { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 33,
|
||||
/// LongMnemonic = "CEMJTYP",
|
||||
/// ShortMnemonic = "CJTY",
|
||||
/// Description = "Cem Job Type",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 16,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("CEMJTYP")]
|
||||
public string? Cemjtyp { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 33,
|
||||
/// LongMnemonic = "CEMJTYP",
|
||||
/// ShortMnemonic = "CJTY",
|
||||
/// Description = "Cem Job Type",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 16,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("CEMJTYP")]
|
||||
public string? Cemjtyp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 34,
|
||||
/// LongMnemonic = "SPARE1",
|
||||
/// ShortMnemonic = "SPR1",
|
||||
/// Description = "< SPARE 1>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE1")]
|
||||
public float? Spare1 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 34,
|
||||
/// LongMnemonic = "SPARE1",
|
||||
/// ShortMnemonic = "SPR1",
|
||||
/// Description = "< SPARE 1>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE1")]
|
||||
public float? Spare1 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 35,
|
||||
/// LongMnemonic = "SPARE2",
|
||||
/// ShortMnemonic = "SPR2",
|
||||
/// Description = "< SPARE 2>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE2")]
|
||||
public float? Spare2 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 35,
|
||||
/// LongMnemonic = "SPARE2",
|
||||
/// ShortMnemonic = "SPR2",
|
||||
/// Description = "< SPARE 2>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE2")]
|
||||
public float? Spare2 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 36,
|
||||
/// LongMnemonic = "SPARE3",
|
||||
/// ShortMnemonic = "SPR3",
|
||||
/// Description = "< SPARE 3>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE3")]
|
||||
public float? Spare3 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 36,
|
||||
/// LongMnemonic = "SPARE3",
|
||||
/// ShortMnemonic = "SPR3",
|
||||
/// Description = "< SPARE 3>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE3")]
|
||||
public float? Spare3 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 37,
|
||||
/// LongMnemonic = "SPARE4",
|
||||
/// ShortMnemonic = "SPR4",
|
||||
/// Description = "< SPARE 4>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE4")]
|
||||
public float? Spare4 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 37,
|
||||
/// LongMnemonic = "SPARE4",
|
||||
/// ShortMnemonic = "SPR4",
|
||||
/// Description = "< SPARE 4>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE4")]
|
||||
public float? Spare4 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 38,
|
||||
/// LongMnemonic = "SPARE5",
|
||||
/// ShortMnemonic = "SPR5",
|
||||
/// Description = "< SPARE 5>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE5")]
|
||||
public float? Spare5 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 17,
|
||||
/// ItemId = 38,
|
||||
/// LongMnemonic = "SPARE5",
|
||||
/// ShortMnemonic = "SPR5",
|
||||
/// Description = "< SPARE 5>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE5")]
|
||||
public float? Spare5 { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,375 +1,375 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace AsbCloudDb.Model.WITS
|
||||
{
|
||||
/// <summary>
|
||||
/// Record name: Drill Stem Testing
|
||||
/// Description: Well Testing operations data
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_18")]
|
||||
public class Record18: RecordBase {
|
||||
/// <summary>
|
||||
/// Record name: Drill Stem Testing
|
||||
/// Description: Well Testing operations data
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_18")]
|
||||
public class Record18 : RecordBase
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 8,
|
||||
/// LongMnemonic = "DSTID",
|
||||
/// ShortMnemonic = "DSID",
|
||||
/// Description = "DST identification",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 8,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("DSTID")]
|
||||
public string? Dstid { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 8,
|
||||
/// LongMnemonic = "DSTID",
|
||||
/// ShortMnemonic = "DSID",
|
||||
/// Description = "DST identification",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 8,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("DSTID")]
|
||||
public string? Dstid { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 9,
|
||||
/// LongMnemonic = "DEPTDITM",
|
||||
/// ShortMnemonic = "DDTM",
|
||||
/// Description = "DST Intvl Top Depth (meas)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTDITM")]
|
||||
public float? Deptditm { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 9,
|
||||
/// LongMnemonic = "DEPTDITM",
|
||||
/// ShortMnemonic = "DDTM",
|
||||
/// Description = "DST Intvl Top Depth (meas)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTDITM")]
|
||||
public float? Deptditm { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 10,
|
||||
/// LongMnemonic = "DEPTDITV",
|
||||
/// ShortMnemonic = "DDTV",
|
||||
/// Description = "DST Intvl Top Depth (vert)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTDITV")]
|
||||
public float? Deptditv { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 10,
|
||||
/// LongMnemonic = "DEPTDITV",
|
||||
/// ShortMnemonic = "DDTV",
|
||||
/// Description = "DST Intvl Top Depth (vert)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTDITV")]
|
||||
public float? Deptditv { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 11,
|
||||
/// LongMnemonic = "DEPTDIBM",
|
||||
/// ShortMnemonic = "DDBM",
|
||||
/// Description = "DST Intvl Bott Depth (meas)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTDIBM")]
|
||||
public float? Deptdibm { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 11,
|
||||
/// LongMnemonic = "DEPTDIBM",
|
||||
/// ShortMnemonic = "DDBM",
|
||||
/// Description = "DST Intvl Bott Depth (meas)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTDIBM")]
|
||||
public float? Deptdibm { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "DEPTDIBV",
|
||||
/// ShortMnemonic = "DDBV",
|
||||
/// Description = "DST Intvl Bott Depth (vert)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTDIBV")]
|
||||
public float? Deptdibv { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "DEPTDIBV",
|
||||
/// ShortMnemonic = "DDBV",
|
||||
/// Description = "DST Intvl Bott Depth (vert)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTDIBV")]
|
||||
public float? Deptdibv { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "DSTTTIME",
|
||||
/// ShortMnemonic = "DTTI",
|
||||
/// Description = "DST Tool Time",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "HR",
|
||||
/// MetricUnits = "HR",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("DSTTTIME")]
|
||||
public int? Dstttime { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "DSTTTIME",
|
||||
/// ShortMnemonic = "DTTI",
|
||||
/// Description = "DST Tool Time",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "HR",
|
||||
/// MetricUnits = "HR",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("DSTTTIME")]
|
||||
public int? Dstttime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "DSTSTATE",
|
||||
/// ShortMnemonic = "DSTA",
|
||||
/// Description = "DST State of Well",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("DSTSTATE")]
|
||||
public short? Dststate { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "DSTSTATE",
|
||||
/// ShortMnemonic = "DSTA",
|
||||
/// Description = "DST State of Well",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("DSTSTATE")]
|
||||
public short? Dststate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "DSTSPTUB",
|
||||
/// ShortMnemonic = "DSPT",
|
||||
/// Description = "DST Surf Pressure, Tubing",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PSI",
|
||||
/// MetricUnits = "KPA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DSTSPTUB")]
|
||||
public float? Dstsptub { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "DSTSPTUB",
|
||||
/// ShortMnemonic = "DSPT",
|
||||
/// Description = "DST Surf Pressure, Tubing",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PSI",
|
||||
/// MetricUnits = "KPA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DSTSPTUB")]
|
||||
public float? Dstsptub { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "DSTSPCAS",
|
||||
/// ShortMnemonic = "DSPC",
|
||||
/// Description = "DST Surf Pressure, Casing",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PSI",
|
||||
/// MetricUnits = "KPA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DSTSPCAS")]
|
||||
public float? Dstspcas { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "DSTSPCAS",
|
||||
/// ShortMnemonic = "DSPC",
|
||||
/// Description = "DST Surf Pressure, Casing",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PSI",
|
||||
/// MetricUnits = "KPA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DSTSPCAS")]
|
||||
public float? Dstspcas { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "DSTSTTUB",
|
||||
/// ShortMnemonic = "DSTT",
|
||||
/// Description = "DST Surf Temp, Tubing",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "DEGF",
|
||||
/// MetricUnits = "DEGC",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DSTSTTUB")]
|
||||
public float? Dststtub { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "DSTSTTUB",
|
||||
/// ShortMnemonic = "DSTT",
|
||||
/// Description = "DST Surf Temp, Tubing",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "DEGF",
|
||||
/// MetricUnits = "DEGC",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DSTSTTUB")]
|
||||
public float? Dststtub { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "DSTBHP",
|
||||
/// ShortMnemonic = "DBHP",
|
||||
/// Description = "DST Bottom Hole Pressure",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PSI",
|
||||
/// MetricUnits = "KPA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DSTBHP")]
|
||||
public float? Dstbhp { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "DSTBHP",
|
||||
/// ShortMnemonic = "DBHP",
|
||||
/// Description = "DST Bottom Hole Pressure",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PSI",
|
||||
/// MetricUnits = "KPA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DSTBHP")]
|
||||
public float? Dstbhp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "DSTBHT",
|
||||
/// ShortMnemonic = "DBHT",
|
||||
/// Description = "DST Bottom Hole Temp",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "DEGF",
|
||||
/// MetricUnits = "DEGC",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DSTBHT")]
|
||||
public float? Dstbht { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "DSTBHT",
|
||||
/// ShortMnemonic = "DBHT",
|
||||
/// Description = "DST Bottom Hole Temp",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "DEGF",
|
||||
/// MetricUnits = "DEGC",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DSTBHT")]
|
||||
public float? Dstbht { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 20,
|
||||
/// LongMnemonic = "DSTLIQFR",
|
||||
/// ShortMnemonic = "DLFR",
|
||||
/// Description = "DST Liquid Flow Rate",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BPD",
|
||||
/// MetricUnits = "M3/D",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DSTLIQFR")]
|
||||
public float? Dstliqfr { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 20,
|
||||
/// LongMnemonic = "DSTLIQFR",
|
||||
/// ShortMnemonic = "DLFR",
|
||||
/// Description = "DST Liquid Flow Rate",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BPD",
|
||||
/// MetricUnits = "M3/D",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DSTLIQFR")]
|
||||
public float? Dstliqfr { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 21,
|
||||
/// LongMnemonic = "DSTGASFR",
|
||||
/// ShortMnemonic = "DGFR",
|
||||
/// Description = "DST Gas Flow Rate",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "MCFD",
|
||||
/// MetricUnits = "MCMD",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DSTGASFR")]
|
||||
public float? Dstgasfr { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 21,
|
||||
/// LongMnemonic = "DSTGASFR",
|
||||
/// ShortMnemonic = "DGFR",
|
||||
/// Description = "DST Gas Flow Rate",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "MCFD",
|
||||
/// MetricUnits = "MCMD",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DSTGASFR")]
|
||||
public float? Dstgasfr { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 22,
|
||||
/// LongMnemonic = "DSTTOTFR",
|
||||
/// ShortMnemonic = "DTFR",
|
||||
/// Description = "DST Total Flow Rate",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BPD",
|
||||
/// MetricUnits = "M3/D",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DSTTOTFR")]
|
||||
public float? Dsttotfr { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 22,
|
||||
/// LongMnemonic = "DSTTOTFR",
|
||||
/// ShortMnemonic = "DTFR",
|
||||
/// Description = "DST Total Flow Rate",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BPD",
|
||||
/// MetricUnits = "M3/D",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DSTTOTFR")]
|
||||
public float? Dsttotfr { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 23,
|
||||
/// LongMnemonic = "DSTCLP",
|
||||
/// ShortMnemonic = "DCLP",
|
||||
/// Description = "DST Cum Liquid Production",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DSTCLP")]
|
||||
public float? Dstclp { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 23,
|
||||
/// LongMnemonic = "DSTCLP",
|
||||
/// ShortMnemonic = "DCLP",
|
||||
/// Description = "DST Cum Liquid Production",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DSTCLP")]
|
||||
public float? Dstclp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 24,
|
||||
/// LongMnemonic = "DSTCGP",
|
||||
/// ShortMnemonic = "DCGP",
|
||||
/// Description = "DST Cum Gas Production",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "MCF",
|
||||
/// MetricUnits = "MCM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DSTCGP")]
|
||||
public float? Dstcgp { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 24,
|
||||
/// LongMnemonic = "DSTCGP",
|
||||
/// ShortMnemonic = "DCGP",
|
||||
/// Description = "DST Cum Gas Production",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "MCF",
|
||||
/// MetricUnits = "MCM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DSTCGP")]
|
||||
public float? Dstcgp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 25,
|
||||
/// LongMnemonic = "DSTCTP",
|
||||
/// ShortMnemonic = "DCTP",
|
||||
/// Description = "DST Cum Total Production",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DSTCTP")]
|
||||
public float? Dstctp { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 25,
|
||||
/// LongMnemonic = "DSTCTP",
|
||||
/// ShortMnemonic = "DCTP",
|
||||
/// Description = "DST Cum Total Production",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DSTCTP")]
|
||||
public float? Dstctp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 26,
|
||||
/// LongMnemonic = "HSA",
|
||||
/// ShortMnemonic = "HSA",
|
||||
/// Description = "Hydrogen Sulfide (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("HSA")]
|
||||
public int? Hsa { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 26,
|
||||
/// LongMnemonic = "HSA",
|
||||
/// ShortMnemonic = "HSA",
|
||||
/// Description = "Hydrogen Sulfide (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPM",
|
||||
/// MetricUnits = "PPM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("HSA")]
|
||||
public int? Hsa { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 27,
|
||||
/// LongMnemonic = "SPARE1",
|
||||
/// ShortMnemonic = "SPR1",
|
||||
/// Description = "< SPARE 1>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE1")]
|
||||
public float? Spare1 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 27,
|
||||
/// LongMnemonic = "SPARE1",
|
||||
/// ShortMnemonic = "SPR1",
|
||||
/// Description = "< SPARE 1>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE1")]
|
||||
public float? Spare1 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 28,
|
||||
/// LongMnemonic = "SPARE2",
|
||||
/// ShortMnemonic = "SPR2",
|
||||
/// Description = "< SPARE 2>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE2")]
|
||||
public float? Spare2 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 28,
|
||||
/// LongMnemonic = "SPARE2",
|
||||
/// ShortMnemonic = "SPR2",
|
||||
/// Description = "< SPARE 2>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE2")]
|
||||
public float? Spare2 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 29,
|
||||
/// LongMnemonic = "SPARE3",
|
||||
/// ShortMnemonic = "SPR3",
|
||||
/// Description = "< SPARE 3>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE3")]
|
||||
public float? Spare3 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 29,
|
||||
/// LongMnemonic = "SPARE3",
|
||||
/// ShortMnemonic = "SPR3",
|
||||
/// Description = "< SPARE 3>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE3")]
|
||||
public float? Spare3 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 30,
|
||||
/// LongMnemonic = "SPARE4",
|
||||
/// ShortMnemonic = "SPR4",
|
||||
/// Description = "< SPARE 4>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE4")]
|
||||
public float? Spare4 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 30,
|
||||
/// LongMnemonic = "SPARE4",
|
||||
/// ShortMnemonic = "SPR4",
|
||||
/// Description = "< SPARE 4>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE4")]
|
||||
public float? Spare4 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 31,
|
||||
/// LongMnemonic = "SPARE5",
|
||||
/// ShortMnemonic = "SPR5",
|
||||
/// Description = "< SPARE 5>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE5")]
|
||||
public float? Spare5 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 18,
|
||||
/// ItemId = 31,
|
||||
/// LongMnemonic = "SPARE5",
|
||||
/// ShortMnemonic = "SPR5",
|
||||
/// Description = "< SPARE 5>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE5")]
|
||||
public float? Spare5 { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,449 +1,449 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace AsbCloudDb.Model.WITS
|
||||
{
|
||||
/// <summary>
|
||||
/// Record name: Drilling - Depth Based
|
||||
/// Description: Drilling data gathered at regular depth intervals
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_2")]
|
||||
public class Record2: RecordBase {
|
||||
/// <summary>
|
||||
/// Record name: Drilling - Depth Based
|
||||
/// Description: Drilling data gathered at regular depth intervals
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_2")]
|
||||
public class Record2 : RecordBase
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// 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 = 2,
|
||||
/// 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 = 2,
|
||||
/// 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 = 2,
|
||||
/// 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 = 2,
|
||||
/// ItemId = 10,
|
||||
/// LongMnemonic = "ROPA",
|
||||
/// ShortMnemonic = "ROPA",
|
||||
/// Description = "Rate of Penetration (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F/HR",
|
||||
/// MetricUnits = "M/HR",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("ROPA")]
|
||||
public float? Ropa { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 10,
|
||||
/// LongMnemonic = "ROPA",
|
||||
/// ShortMnemonic = "ROPA",
|
||||
/// Description = "Rate of Penetration (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F/HR",
|
||||
/// MetricUnits = "M/HR",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("ROPA")]
|
||||
public float? Ropa { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 11,
|
||||
/// LongMnemonic = "WOBA",
|
||||
/// ShortMnemonic = "WOBA",
|
||||
/// Description = "Weight-on-Bit (surf,avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KLB",
|
||||
/// MetricUnits = "KDN",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("WOBA")]
|
||||
public float? Woba { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 11,
|
||||
/// LongMnemonic = "WOBA",
|
||||
/// ShortMnemonic = "WOBA",
|
||||
/// Description = "Weight-on-Bit (surf,avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KLB",
|
||||
/// MetricUnits = "KDN",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("WOBA")]
|
||||
public float? Woba { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "HKLA",
|
||||
/// ShortMnemonic = "HKLA",
|
||||
/// Description = "Hookload (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KLB",
|
||||
/// MetricUnits = "KDN",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("HKLA")]
|
||||
public float? Hkla { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "HKLA",
|
||||
/// ShortMnemonic = "HKLA",
|
||||
/// Description = "Hookload (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KLB",
|
||||
/// MetricUnits = "KDN",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("HKLA")]
|
||||
public float? Hkla { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "SPPA",
|
||||
/// ShortMnemonic = "SPPA",
|
||||
/// Description = "Standpipe Pressure (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PSI",
|
||||
/// MetricUnits = "KPA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPPA")]
|
||||
public float? Sppa { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "SPPA",
|
||||
/// ShortMnemonic = "SPPA",
|
||||
/// Description = "Standpipe Pressure (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PSI",
|
||||
/// MetricUnits = "KPA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPPA")]
|
||||
public float? Sppa { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "TORQA",
|
||||
/// ShortMnemonic = "TQA",
|
||||
/// Description = "Rotary Torque (surf,avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KFLB",
|
||||
/// MetricUnits = "KNM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TORQA")]
|
||||
public float? Torqa { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "TORQA",
|
||||
/// ShortMnemonic = "TQA",
|
||||
/// Description = "Rotary Torque (surf,avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KFLB",
|
||||
/// MetricUnits = "KNM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TORQA")]
|
||||
public float? Torqa { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "RPMA",
|
||||
/// ShortMnemonic = "RPMA",
|
||||
/// Description = "Rotary Speed (surf,avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "RPM",
|
||||
/// MetricUnits = "RPM",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("RPMA")]
|
||||
public short? Rpma { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "RPMA",
|
||||
/// ShortMnemonic = "RPMA",
|
||||
/// Description = "Rotary Speed (surf,avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "RPM",
|
||||
/// MetricUnits = "RPM",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("RPMA")]
|
||||
public short? Rpma { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "BTREVC",
|
||||
/// ShortMnemonic = "BRVC",
|
||||
/// Description = "Bit Revolutions (cum)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("BTREVC")]
|
||||
public int? Btrevc { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "BTREVC",
|
||||
/// ShortMnemonic = "BRVC",
|
||||
/// Description = "Bit Revolutions (cum)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("BTREVC")]
|
||||
public int? Btrevc { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "MDIA",
|
||||
/// ShortMnemonic = "MDIA",
|
||||
/// Description = "Mud Density In (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPG",
|
||||
/// MetricUnits = "KGM3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MDIA")]
|
||||
public float? Mdia { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "MDIA",
|
||||
/// ShortMnemonic = "MDIA",
|
||||
/// Description = "Mud Density In (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPG",
|
||||
/// MetricUnits = "KGM3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MDIA")]
|
||||
public float? Mdia { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "ECDTD",
|
||||
/// ShortMnemonic = "ECDT",
|
||||
/// Description = "ECD at Total Depth",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPG",
|
||||
/// MetricUnits = "KGM3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("ECDTD")]
|
||||
public float? Ecdtd { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "ECDTD",
|
||||
/// ShortMnemonic = "ECDT",
|
||||
/// Description = "ECD at Total Depth",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPG",
|
||||
/// MetricUnits = "KGM3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("ECDTD")]
|
||||
public float? Ecdtd { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "MFIA",
|
||||
/// ShortMnemonic = "MFIA",
|
||||
/// Description = "Mud Flow In (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "GPM",
|
||||
/// MetricUnits = "L/M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MFIA")]
|
||||
public float? Mfia { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "MFIA",
|
||||
/// ShortMnemonic = "MFIA",
|
||||
/// Description = "Mud Flow In (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "GPM",
|
||||
/// MetricUnits = "L/M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MFIA")]
|
||||
public float? Mfia { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 20,
|
||||
/// LongMnemonic = "MFOA",
|
||||
/// ShortMnemonic = "MFOA",
|
||||
/// Description = "Mud Flow Out (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "GPM",
|
||||
/// MetricUnits = "L/M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MFOA")]
|
||||
public float? Mfoa { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 20,
|
||||
/// LongMnemonic = "MFOA",
|
||||
/// ShortMnemonic = "MFOA",
|
||||
/// Description = "Mud Flow Out (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "GPM",
|
||||
/// MetricUnits = "L/M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MFOA")]
|
||||
public float? Mfoa { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 21,
|
||||
/// LongMnemonic = "MFOP",
|
||||
/// ShortMnemonic = "MFOP",
|
||||
/// Description = "Mud Flow Out %",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "%",
|
||||
/// MetricUnits = "%",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("MFOP")]
|
||||
public short? Mfop { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 21,
|
||||
/// LongMnemonic = "MFOP",
|
||||
/// ShortMnemonic = "MFOP",
|
||||
/// Description = "Mud Flow Out %",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "%",
|
||||
/// MetricUnits = "%",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("MFOP")]
|
||||
public short? Mfop { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 22,
|
||||
/// LongMnemonic = "TVOLACT",
|
||||
/// ShortMnemonic = "TVA",
|
||||
/// Description = "Tank Volume (active)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOLACT")]
|
||||
public float? Tvolact { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 22,
|
||||
/// LongMnemonic = "TVOLACT",
|
||||
/// ShortMnemonic = "TVA",
|
||||
/// Description = "Tank Volume (active)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TVOLACT")]
|
||||
public float? Tvolact { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 23,
|
||||
/// LongMnemonic = "CPDI",
|
||||
/// ShortMnemonic = "CPDI",
|
||||
/// Description = "Cost/Distance (inst)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "$/F",
|
||||
/// MetricUnits = "$/M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CPDI")]
|
||||
public float? Cpdi { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 23,
|
||||
/// LongMnemonic = "CPDI",
|
||||
/// ShortMnemonic = "CPDI",
|
||||
/// Description = "Cost/Distance (inst)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "$/F",
|
||||
/// MetricUnits = "$/M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CPDI")]
|
||||
public float? Cpdi { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 24,
|
||||
/// LongMnemonic = "CPDC",
|
||||
/// ShortMnemonic = "CPDC",
|
||||
/// Description = "Cost/Distance (cum)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "$/F",
|
||||
/// MetricUnits = "$/M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CPDC")]
|
||||
public float? Cpdc { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 24,
|
||||
/// LongMnemonic = "CPDC",
|
||||
/// ShortMnemonic = "CPDC",
|
||||
/// Description = "Cost/Distance (cum)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "$/F",
|
||||
/// MetricUnits = "$/M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("CPDC")]
|
||||
public float? Cpdc { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 25,
|
||||
/// LongMnemonic = "BTDTIME",
|
||||
/// ShortMnemonic = "BDTI",
|
||||
/// Description = "Bit Drilled Time",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "HR",
|
||||
/// MetricUnits = "HR",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("BTDTIME")]
|
||||
public float? Btdtime { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 25,
|
||||
/// LongMnemonic = "BTDTIME",
|
||||
/// ShortMnemonic = "BDTI",
|
||||
/// Description = "Bit Drilled Time",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "HR",
|
||||
/// MetricUnits = "HR",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("BTDTIME")]
|
||||
public float? Btdtime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 26,
|
||||
/// LongMnemonic = "BTDDIST",
|
||||
/// ShortMnemonic = "BDDI",
|
||||
/// Description = "Bit Drilled Distance",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("BTDDIST")]
|
||||
public float? Btddist { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 26,
|
||||
/// LongMnemonic = "BTDDIST",
|
||||
/// ShortMnemonic = "BDDI",
|
||||
/// Description = "Bit Drilled Distance",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("BTDDIST")]
|
||||
public float? Btddist { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 27,
|
||||
/// LongMnemonic = "DXC",
|
||||
/// ShortMnemonic = "DXC",
|
||||
/// Description = "Corr. Drilling Exponent",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DXC")]
|
||||
public float? Dxc { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 27,
|
||||
/// LongMnemonic = "DXC",
|
||||
/// ShortMnemonic = "DXC",
|
||||
/// Description = "Corr. Drilling Exponent",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DXC")]
|
||||
public float? Dxc { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 28,
|
||||
/// LongMnemonic = "SPARE1",
|
||||
/// ShortMnemonic = "SPR1",
|
||||
/// Description = "< SPARE 1>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE1")]
|
||||
public float? Spare1 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 28,
|
||||
/// LongMnemonic = "SPARE1",
|
||||
/// ShortMnemonic = "SPR1",
|
||||
/// Description = "< SPARE 1>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE1")]
|
||||
public float? Spare1 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 29,
|
||||
/// LongMnemonic = "SPARE2",
|
||||
/// ShortMnemonic = "SPR2",
|
||||
/// Description = "< SPARE 2>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE2")]
|
||||
public float? Spare2 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 29,
|
||||
/// LongMnemonic = "SPARE2",
|
||||
/// ShortMnemonic = "SPR2",
|
||||
/// Description = "< SPARE 2>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE2")]
|
||||
public float? Spare2 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 30,
|
||||
/// LongMnemonic = "SPARE3",
|
||||
/// ShortMnemonic = "SPR3",
|
||||
/// Description = "< SPARE 3>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE3")]
|
||||
public float? Spare3 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 30,
|
||||
/// LongMnemonic = "SPARE3",
|
||||
/// ShortMnemonic = "SPR3",
|
||||
/// Description = "< SPARE 3>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE3")]
|
||||
public float? Spare3 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 31,
|
||||
/// LongMnemonic = "SPARE4",
|
||||
/// ShortMnemonic = "SPR4",
|
||||
/// Description = "< SPARE 4>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE4")]
|
||||
public float? Spare4 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 31,
|
||||
/// LongMnemonic = "SPARE4",
|
||||
/// ShortMnemonic = "SPR4",
|
||||
/// Description = "< SPARE 4>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE4")]
|
||||
public float? Spare4 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 32,
|
||||
/// LongMnemonic = "SPARE5",
|
||||
/// ShortMnemonic = "SPR5",
|
||||
/// Description = "< SPARE 5>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE5")]
|
||||
public float? Spare5 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 32,
|
||||
/// LongMnemonic = "SPARE5",
|
||||
/// ShortMnemonic = "SPR5",
|
||||
/// Description = "< SPARE 5>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE5")]
|
||||
public float? Spare5 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 33,
|
||||
/// LongMnemonic = "SPARE6",
|
||||
/// ShortMnemonic = "SPR6",
|
||||
/// Description = "< SPARE 6>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE6")]
|
||||
public float? Spare6 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 33,
|
||||
/// LongMnemonic = "SPARE6",
|
||||
/// ShortMnemonic = "SPR6",
|
||||
/// Description = "< SPARE 6>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE6")]
|
||||
public float? Spare6 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 34,
|
||||
/// LongMnemonic = "SPARE7",
|
||||
/// ShortMnemonic = "SPR7",
|
||||
/// Description = "< SPARE 7>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE7")]
|
||||
public float? Spare7 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 34,
|
||||
/// LongMnemonic = "SPARE7",
|
||||
/// ShortMnemonic = "SPR7",
|
||||
/// Description = "< SPARE 7>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE7")]
|
||||
public float? Spare7 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 35,
|
||||
/// LongMnemonic = "SPARE8",
|
||||
/// ShortMnemonic = "SPR8",
|
||||
/// Description = "< SPARE 8>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE8")]
|
||||
public float? Spare8 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 35,
|
||||
/// LongMnemonic = "SPARE8",
|
||||
/// ShortMnemonic = "SPR8",
|
||||
/// Description = "< SPARE 8>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE8")]
|
||||
public float? Spare8 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 36,
|
||||
/// LongMnemonic = "SPARE9",
|
||||
/// ShortMnemonic = "SPR9",
|
||||
/// Description = "< SPARE 9>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE9")]
|
||||
public float? Spare9 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 2,
|
||||
/// ItemId = 36,
|
||||
/// LongMnemonic = "SPARE9",
|
||||
/// ShortMnemonic = "SPR9",
|
||||
/// Description = "< SPARE 9>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE9")]
|
||||
public float? Spare9 { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,60 +1,60 @@
|
||||
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>
|
||||
/// 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 = 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 = 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; }
|
||||
/// <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; }
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,465 +1,465 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace AsbCloudDb.Model.WITS
|
||||
{
|
||||
/// <summary>
|
||||
/// Record name: Well Identification
|
||||
/// Description: Well Identification data
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_23")]
|
||||
public class Record23: RecordBase {
|
||||
/// <summary>
|
||||
/// Record name: Well Identification
|
||||
/// Description: Well Identification data
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_23")]
|
||||
public class Record23 : RecordBase
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 8,
|
||||
/// LongMnemonic = "WELLNAME",
|
||||
/// ShortMnemonic = "WELL",
|
||||
/// Description = "Well Name",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 32,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("WELLNAME")]
|
||||
public string? Wellname { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 8,
|
||||
/// LongMnemonic = "WELLNAME",
|
||||
/// ShortMnemonic = "WELL",
|
||||
/// Description = "Well Name",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 32,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("WELLNAME")]
|
||||
public string? Wellname { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 9,
|
||||
/// LongMnemonic = "WELLNUM",
|
||||
/// ShortMnemonic = "WNUM",
|
||||
/// Description = "Well Identification Number",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 16,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("WELLNUM")]
|
||||
public string? Wellnum { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 9,
|
||||
/// LongMnemonic = "WELLNUM",
|
||||
/// ShortMnemonic = "WNUM",
|
||||
/// Description = "Well Identification Number",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 16,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("WELLNUM")]
|
||||
public string? Wellnum { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 10,
|
||||
/// LongMnemonic = "OPERATOR",
|
||||
/// ShortMnemonic = "OPER",
|
||||
/// Description = "Operator",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 32,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("OPERATOR")]
|
||||
public string? Operator { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 10,
|
||||
/// LongMnemonic = "OPERATOR",
|
||||
/// ShortMnemonic = "OPER",
|
||||
/// Description = "Operator",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 32,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("OPERATOR")]
|
||||
public string? Operator { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 11,
|
||||
/// LongMnemonic = "WELLCLAS",
|
||||
/// ShortMnemonic = "WCLS",
|
||||
/// Description = "Well Classification (Lahee)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 16,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("WELLCLAS")]
|
||||
public string? Wellclas { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 11,
|
||||
/// LongMnemonic = "WELLCLAS",
|
||||
/// ShortMnemonic = "WCLS",
|
||||
/// Description = "Well Classification (Lahee)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 16,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("WELLCLAS")]
|
||||
public string? Wellclas { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "LOCATION",
|
||||
/// ShortMnemonic = "WLOC",
|
||||
/// Description = "Well Location",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 32,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("LOCATION")]
|
||||
public string? Location { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "LOCATION",
|
||||
/// ShortMnemonic = "WLOC",
|
||||
/// Description = "Well Location",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 32,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("LOCATION")]
|
||||
public string? Location { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "WELLUTM",
|
||||
/// ShortMnemonic = "WUTM",
|
||||
/// Description = "Well Univ.Tran.Mercator",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 16,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("WELLUTM")]
|
||||
public string? Wellutm { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "WELLUTM",
|
||||
/// ShortMnemonic = "WUTM",
|
||||
/// Description = "Well Univ.Tran.Mercator",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 16,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("WELLUTM")]
|
||||
public string? Wellutm { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "WELLLAT",
|
||||
/// ShortMnemonic = "WLAT",
|
||||
/// Description = "Well Surface Latitude",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 16,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("WELLLAT")]
|
||||
public string? Welllat { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "WELLLAT",
|
||||
/// ShortMnemonic = "WLAT",
|
||||
/// Description = "Well Surface Latitude",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 16,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("WELLLAT")]
|
||||
public string? Welllat { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "WELLLON",
|
||||
/// ShortMnemonic = "WLON",
|
||||
/// Description = "Well Surface Longitude",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 16,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("WELLLON")]
|
||||
public string? Welllon { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "WELLLON",
|
||||
/// ShortMnemonic = "WLON",
|
||||
/// Description = "Well Surface Longitude",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 16,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("WELLLON")]
|
||||
public string? Welllon { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "FIELD",
|
||||
/// ShortMnemonic = "FLD",
|
||||
/// Description = "Field Name",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 32,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("FIELD")]
|
||||
public string? Field { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "FIELD",
|
||||
/// ShortMnemonic = "FLD",
|
||||
/// Description = "Field Name",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 32,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("FIELD")]
|
||||
public string? Field { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "ELEVDP",
|
||||
/// ShortMnemonic = "ELDP",
|
||||
/// Description = "Elev : Datum-MSL",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("ELEVDP")]
|
||||
public float? Elevdp { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "ELEVDP",
|
||||
/// ShortMnemonic = "ELDP",
|
||||
/// Description = "Elev : Datum-MSL",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("ELEVDP")]
|
||||
public float? Elevdp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "ELEVKB",
|
||||
/// ShortMnemonic = "ELKB",
|
||||
/// Description = "Elev : Kelly Bushing-MSL",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("ELEVKB")]
|
||||
public float? Elevkb { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "ELEVKB",
|
||||
/// ShortMnemonic = "ELKB",
|
||||
/// Description = "Elev : Kelly Bushing-MSL",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("ELEVKB")]
|
||||
public float? Elevkb { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "ELEVGL",
|
||||
/// ShortMnemonic = "ELGL",
|
||||
/// Description = "Elev : Ground Level-MSL",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("ELEVGL")]
|
||||
public float? Elevgl { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "ELEVGL",
|
||||
/// ShortMnemonic = "ELGL",
|
||||
/// Description = "Elev : Ground Level-MSL",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("ELEVGL")]
|
||||
public float? Elevgl { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 20,
|
||||
/// LongMnemonic = "WATDEPT",
|
||||
/// ShortMnemonic = "WDPM",
|
||||
/// Description = "Water Depth (mean)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("WATDEPT")]
|
||||
public float? Watdept { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 20,
|
||||
/// LongMnemonic = "WATDEPT",
|
||||
/// ShortMnemonic = "WDPM",
|
||||
/// Description = "Water Depth (mean)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("WATDEPT")]
|
||||
public float? Watdept { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 21,
|
||||
/// LongMnemonic = "SPUDDATE",
|
||||
/// ShortMnemonic = "SPDT",
|
||||
/// Description = "Spud Date",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("SPUDDATE")]
|
||||
public int? Spuddate { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 21,
|
||||
/// LongMnemonic = "SPUDDATE",
|
||||
/// ShortMnemonic = "SPDT",
|
||||
/// Description = "Spud Date",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("SPUDDATE")]
|
||||
public int? Spuddate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 22,
|
||||
/// LongMnemonic = "CUS1",
|
||||
/// ShortMnemonic = "CUS1",
|
||||
/// Description = "Custom Field 01 Identifier",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 32,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("CUS1")]
|
||||
public string? Cus1 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 22,
|
||||
/// LongMnemonic = "CUS1",
|
||||
/// ShortMnemonic = "CUS1",
|
||||
/// Description = "Custom Field 01 Identifier",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 32,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("CUS1")]
|
||||
public string? Cus1 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 23,
|
||||
/// LongMnemonic = "CUS2",
|
||||
/// ShortMnemonic = "CUS2",
|
||||
/// Description = "Custom Field 02 Identifier",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 32,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("CUS2")]
|
||||
public string? Cus2 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 23,
|
||||
/// LongMnemonic = "CUS2",
|
||||
/// ShortMnemonic = "CUS2",
|
||||
/// Description = "Custom Field 02 Identifier",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 32,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("CUS2")]
|
||||
public string? Cus2 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 24,
|
||||
/// LongMnemonic = "CUS3",
|
||||
/// ShortMnemonic = "CUS3",
|
||||
/// Description = "Custom Field 03 Identifier",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 32,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("CUS3")]
|
||||
public string? Cus3 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 24,
|
||||
/// LongMnemonic = "CUS3",
|
||||
/// ShortMnemonic = "CUS3",
|
||||
/// Description = "Custom Field 03 Identifier",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 32,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("CUS3")]
|
||||
public string? Cus3 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 25,
|
||||
/// LongMnemonic = "CUS4",
|
||||
/// ShortMnemonic = "CUS4",
|
||||
/// Description = "Custom Field 04 Identifier",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 32,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("CUS4")]
|
||||
public string? Cus4 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 25,
|
||||
/// LongMnemonic = "CUS4",
|
||||
/// ShortMnemonic = "CUS4",
|
||||
/// Description = "Custom Field 04 Identifier",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 32,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("CUS4")]
|
||||
public string? Cus4 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 26,
|
||||
/// LongMnemonic = "CUS5",
|
||||
/// ShortMnemonic = "CUS5",
|
||||
/// Description = "Custom Field 05 Identifier",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 32,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("CUS5")]
|
||||
public string? Cus5 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 26,
|
||||
/// LongMnemonic = "CUS5",
|
||||
/// ShortMnemonic = "CUS5",
|
||||
/// Description = "Custom Field 05 Identifier",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 32,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("CUS5")]
|
||||
public string? Cus5 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 27,
|
||||
/// LongMnemonic = "CUS6",
|
||||
/// ShortMnemonic = "CUS6",
|
||||
/// Description = "Custom Field 06 Identifier",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 32,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("CUS6")]
|
||||
public string? Cus6 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 27,
|
||||
/// LongMnemonic = "CUS6",
|
||||
/// ShortMnemonic = "CUS6",
|
||||
/// Description = "Custom Field 06 Identifier",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 32,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("CUS6")]
|
||||
public string? Cus6 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 28,
|
||||
/// LongMnemonic = "CUS7",
|
||||
/// ShortMnemonic = "CUS7",
|
||||
/// Description = "Custom Field 07 Identifier",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 32,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("CUS7")]
|
||||
public string? Cus7 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 28,
|
||||
/// LongMnemonic = "CUS7",
|
||||
/// ShortMnemonic = "CUS7",
|
||||
/// Description = "Custom Field 07 Identifier",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 32,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("CUS7")]
|
||||
public string? Cus7 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 29,
|
||||
/// LongMnemonic = "CUS8",
|
||||
/// ShortMnemonic = "CUS8",
|
||||
/// Description = "Custom Field 08 Identifier",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 32,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("CUS8")]
|
||||
public string? Cus8 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 29,
|
||||
/// LongMnemonic = "CUS8",
|
||||
/// ShortMnemonic = "CUS8",
|
||||
/// Description = "Custom Field 08 Identifier",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 32,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("CUS8")]
|
||||
public string? Cus8 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 30,
|
||||
/// LongMnemonic = "CUS9",
|
||||
/// ShortMnemonic = "CUS9",
|
||||
/// Description = "Custom Field 09 Identifier",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 32,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("CUS9")]
|
||||
public string? Cus9 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 30,
|
||||
/// LongMnemonic = "CUS9",
|
||||
/// ShortMnemonic = "CUS9",
|
||||
/// Description = "Custom Field 09 Identifier",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 32,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("CUS9")]
|
||||
public string? Cus9 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 31,
|
||||
/// LongMnemonic = "CUS0",
|
||||
/// ShortMnemonic = "CUS0",
|
||||
/// Description = "Custom Field 10 Identifier",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 32,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("CUS0")]
|
||||
public string? Cus0 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 31,
|
||||
/// LongMnemonic = "CUS0",
|
||||
/// ShortMnemonic = "CUS0",
|
||||
/// Description = "Custom Field 10 Identifier",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 32,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("CUS0")]
|
||||
public string? Cus0 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 32,
|
||||
/// LongMnemonic = "UNIT",
|
||||
/// ShortMnemonic = "UNIT",
|
||||
/// Description = "Units Type used",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 8,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("UNIT")]
|
||||
public string? Unit { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 32,
|
||||
/// LongMnemonic = "UNIT",
|
||||
/// ShortMnemonic = "UNIT",
|
||||
/// Description = "Units Type used",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 8,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("UNIT")]
|
||||
public string? Unit { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 33,
|
||||
/// LongMnemonic = "TOFFSET",
|
||||
/// ShortMnemonic = "TOFF",
|
||||
/// Description = "Time Zone Offset",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("TOFFSET")]
|
||||
public int? Toffset { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 33,
|
||||
/// LongMnemonic = "TOFFSET",
|
||||
/// ShortMnemonic = "TOFF",
|
||||
/// Description = "Time Zone Offset",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("TOFFSET")]
|
||||
public int? Toffset { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 34,
|
||||
/// LongMnemonic = "SPARE1",
|
||||
/// ShortMnemonic = "SPR1",
|
||||
/// Description = "< SPARE 1>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE1")]
|
||||
public float? Spare1 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 34,
|
||||
/// LongMnemonic = "SPARE1",
|
||||
/// ShortMnemonic = "SPR1",
|
||||
/// Description = "< SPARE 1>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE1")]
|
||||
public float? Spare1 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 35,
|
||||
/// LongMnemonic = "SPARE2",
|
||||
/// ShortMnemonic = "SPR2",
|
||||
/// Description = "< SPARE 2>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE2")]
|
||||
public float? Spare2 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 35,
|
||||
/// LongMnemonic = "SPARE2",
|
||||
/// ShortMnemonic = "SPR2",
|
||||
/// Description = "< SPARE 2>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE2")]
|
||||
public float? Spare2 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 36,
|
||||
/// LongMnemonic = "SPARE3",
|
||||
/// ShortMnemonic = "SPR3",
|
||||
/// Description = "< SPARE 3>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE3")]
|
||||
public float? Spare3 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 36,
|
||||
/// LongMnemonic = "SPARE3",
|
||||
/// ShortMnemonic = "SPR3",
|
||||
/// Description = "< SPARE 3>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE3")]
|
||||
public float? Spare3 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 37,
|
||||
/// LongMnemonic = "SPARE4",
|
||||
/// ShortMnemonic = "SPR4",
|
||||
/// Description = "< SPARE 4>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE4")]
|
||||
public float? Spare4 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 23,
|
||||
/// ItemId = 37,
|
||||
/// LongMnemonic = "SPARE4",
|
||||
/// ShortMnemonic = "SPR4",
|
||||
/// Description = "< SPARE 4>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE4")]
|
||||
public float? Spare4 { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,300 +1,300 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace AsbCloudDb.Model.WITS
|
||||
{
|
||||
/// <summary>
|
||||
/// Record name: Drilling - Connections
|
||||
/// Description: Data gathered at drilling connections
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_3")]
|
||||
public class Record3: RecordBase {
|
||||
/// <summary>
|
||||
/// Record name: Drilling - Connections
|
||||
/// Description: Data gathered at drilling connections
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_3")]
|
||||
public class Record3 : RecordBase
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 8,
|
||||
/// LongMnemonic = "DEPTCONM",
|
||||
/// ShortMnemonic = "DCNM",
|
||||
/// Description = "Depth Connection (meas)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTCONM")]
|
||||
public float? Deptconm { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 8,
|
||||
/// LongMnemonic = "DEPTCONM",
|
||||
/// ShortMnemonic = "DCNM",
|
||||
/// Description = "Depth Connection (meas)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTCONM")]
|
||||
public float? Deptconm { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 9,
|
||||
/// LongMnemonic = "DEPTCONV",
|
||||
/// ShortMnemonic = "DCNV",
|
||||
/// Description = "Depth Connection (vert)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTCONV")]
|
||||
public float? Deptconv { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 9,
|
||||
/// LongMnemonic = "DEPTCONV",
|
||||
/// ShortMnemonic = "DCNV",
|
||||
/// Description = "Depth Connection (vert)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTCONV")]
|
||||
public float? Deptconv { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 10,
|
||||
/// 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 = 3,
|
||||
/// ItemId = 10,
|
||||
/// 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 = 3,
|
||||
/// ItemId = 11,
|
||||
/// 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 = 3,
|
||||
/// ItemId = 11,
|
||||
/// 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 = 3,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "ETIMEBTS",
|
||||
/// ShortMnemonic = "ETBS",
|
||||
/// Description = "Elapsed Time Bottom-Slips",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "SEC",
|
||||
/// MetricUnits = "SEC",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("ETIMEBTS")]
|
||||
public short? Etimebts { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "ETIMEBTS",
|
||||
/// ShortMnemonic = "ETBS",
|
||||
/// Description = "Elapsed Time Bottom-Slips",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "SEC",
|
||||
/// MetricUnits = "SEC",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("ETIMEBTS")]
|
||||
public short? Etimebts { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "ETIMESLP",
|
||||
/// ShortMnemonic = "ETSL",
|
||||
/// Description = "Elapsed Time In-Slips",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "SEC",
|
||||
/// MetricUnits = "SEC",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("ETIMESLP")]
|
||||
public short? Etimeslp { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "ETIMESLP",
|
||||
/// ShortMnemonic = "ETSL",
|
||||
/// Description = "Elapsed Time In-Slips",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "SEC",
|
||||
/// MetricUnits = "SEC",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("ETIMESLP")]
|
||||
public short? Etimeslp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "ETIMESTB",
|
||||
/// ShortMnemonic = "ETSB",
|
||||
/// Description = "Elapsed Time Slips-Bottom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "SEC",
|
||||
/// MetricUnits = "SEC",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("ETIMESTB")]
|
||||
public short? Etimestb { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "ETIMESTB",
|
||||
/// ShortMnemonic = "ETSB",
|
||||
/// Description = "Elapsed Time Slips-Bottom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "SEC",
|
||||
/// MetricUnits = "SEC",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("ETIMESTB")]
|
||||
public short? Etimestb { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "ETIMEPOF",
|
||||
/// ShortMnemonic = "ETPO",
|
||||
/// Description = "Elapsed Time Pumps-Off",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "SEC",
|
||||
/// MetricUnits = "SEC",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("ETIMEPOF")]
|
||||
public short? Etimepof { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "ETIMEPOF",
|
||||
/// ShortMnemonic = "ETPO",
|
||||
/// Description = "Elapsed Time Pumps-Off",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "SEC",
|
||||
/// MetricUnits = "SEC",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("ETIMEPOF")]
|
||||
public short? Etimepof { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "RSUX",
|
||||
/// ShortMnemonic = "RSUX",
|
||||
/// Description = "Running Speed - up (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "FPM",
|
||||
/// MetricUnits = "M/S",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("RSUX")]
|
||||
public float? Rsux { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "RSUX",
|
||||
/// ShortMnemonic = "RSUX",
|
||||
/// Description = "Running Speed - up (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "FPM",
|
||||
/// MetricUnits = "M/S",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("RSUX")]
|
||||
public float? Rsux { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "RSDX",
|
||||
/// ShortMnemonic = "RSDX",
|
||||
/// Description = "Running Speed - down (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "FPM",
|
||||
/// MetricUnits = "M/S",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("RSDX")]
|
||||
public float? Rsdx { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "RSDX",
|
||||
/// ShortMnemonic = "RSDX",
|
||||
/// Description = "Running Speed - down (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "FPM",
|
||||
/// MetricUnits = "M/S",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("RSDX")]
|
||||
public float? Rsdx { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "HKLX",
|
||||
/// ShortMnemonic = "HKLX",
|
||||
/// Description = "Hookload (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KLB",
|
||||
/// MetricUnits = "KDN",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("HKLX")]
|
||||
public float? Hklx { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "HKLX",
|
||||
/// ShortMnemonic = "HKLX",
|
||||
/// Description = "Hookload (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KLB",
|
||||
/// MetricUnits = "KDN",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("HKLX")]
|
||||
public float? Hklx { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "STRGWT",
|
||||
/// ShortMnemonic = "STWT",
|
||||
/// Description = "String Weight (rot,avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KLB",
|
||||
/// MetricUnits = "KDN",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("STRGWT")]
|
||||
public float? Strgwt { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "STRGWT",
|
||||
/// ShortMnemonic = "STWT",
|
||||
/// Description = "String Weight (rot,avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KLB",
|
||||
/// MetricUnits = "KDN",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("STRGWT")]
|
||||
public float? Strgwt { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 20,
|
||||
/// LongMnemonic = "TORQMUX",
|
||||
/// ShortMnemonic = "TQMX",
|
||||
/// Description = "Torque - Make Up (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KFLB",
|
||||
/// MetricUnits = "KNM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TORQMUX")]
|
||||
public float? Torqmux { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 20,
|
||||
/// LongMnemonic = "TORQMUX",
|
||||
/// ShortMnemonic = "TQMX",
|
||||
/// Description = "Torque - Make Up (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KFLB",
|
||||
/// MetricUnits = "KNM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TORQMUX")]
|
||||
public float? Torqmux { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 21,
|
||||
/// LongMnemonic = "TORQBOX",
|
||||
/// ShortMnemonic = "TQBX",
|
||||
/// Description = "Torque - Breakout (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KFLB",
|
||||
/// MetricUnits = "KNM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TORQBOX")]
|
||||
public float? Torqbox { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 21,
|
||||
/// LongMnemonic = "TORQBOX",
|
||||
/// ShortMnemonic = "TQBX",
|
||||
/// Description = "Torque - Breakout (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KFLB",
|
||||
/// MetricUnits = "KNM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TORQBOX")]
|
||||
public float? Torqbox { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 22,
|
||||
/// LongMnemonic = "SPARE1",
|
||||
/// ShortMnemonic = "SPR1",
|
||||
/// Description = "< SPARE 1>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE1")]
|
||||
public float? Spare1 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 22,
|
||||
/// LongMnemonic = "SPARE1",
|
||||
/// ShortMnemonic = "SPR1",
|
||||
/// Description = "< SPARE 1>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE1")]
|
||||
public float? Spare1 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 23,
|
||||
/// LongMnemonic = "SPARE2",
|
||||
/// ShortMnemonic = "SPR2",
|
||||
/// Description = "< SPARE 2>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE2")]
|
||||
public float? Spare2 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 23,
|
||||
/// LongMnemonic = "SPARE2",
|
||||
/// ShortMnemonic = "SPR2",
|
||||
/// Description = "< SPARE 2>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE2")]
|
||||
public float? Spare2 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 24,
|
||||
/// LongMnemonic = "SPARE3",
|
||||
/// ShortMnemonic = "SPR3",
|
||||
/// Description = "< SPARE 3>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE3")]
|
||||
public float? Spare3 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 24,
|
||||
/// LongMnemonic = "SPARE3",
|
||||
/// ShortMnemonic = "SPR3",
|
||||
/// Description = "< SPARE 3>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE3")]
|
||||
public float? Spare3 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 25,
|
||||
/// LongMnemonic = "SPARE4",
|
||||
/// ShortMnemonic = "SPR4",
|
||||
/// Description = "< SPARE 4>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE4")]
|
||||
public float? Spare4 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 25,
|
||||
/// LongMnemonic = "SPARE4",
|
||||
/// ShortMnemonic = "SPR4",
|
||||
/// Description = "< SPARE 4>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE4")]
|
||||
public float? Spare4 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 26,
|
||||
/// LongMnemonic = "SPARE5",
|
||||
/// ShortMnemonic = "SPR5",
|
||||
/// Description = "< SPARE 5>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE5")]
|
||||
public float? Spare5 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 3,
|
||||
/// ItemId = 26,
|
||||
/// LongMnemonic = "SPARE5",
|
||||
/// ShortMnemonic = "SPR5",
|
||||
/// Description = "< SPARE 5>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE5")]
|
||||
public float? Spare5 { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,495 +1,495 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace AsbCloudDb.Model.WITS
|
||||
{
|
||||
/// <summary>
|
||||
/// Record name: Hydraulics
|
||||
/// Description: Hydraulics data gathered while circulating
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_4")]
|
||||
public class Record4: RecordBase {
|
||||
/// <summary>
|
||||
/// Record name: Hydraulics
|
||||
/// Description: Hydraulics data gathered while circulating
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_4")]
|
||||
public class Record4 : RecordBase
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// 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 = 4,
|
||||
/// 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 = 4,
|
||||
/// 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 = 4,
|
||||
/// 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 = 4,
|
||||
/// ItemId = 10,
|
||||
/// LongMnemonic = "DEPTBITM",
|
||||
/// ShortMnemonic = "DBTM",
|
||||
/// Description = "Depth Bit (meas)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTBITM")]
|
||||
public float? Deptbitm { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 10,
|
||||
/// LongMnemonic = "DEPTBITM",
|
||||
/// ShortMnemonic = "DBTM",
|
||||
/// Description = "Depth Bit (meas)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTBITM")]
|
||||
public float? Deptbitm { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 11,
|
||||
/// LongMnemonic = "DEPTBITV",
|
||||
/// ShortMnemonic = "DBTV",
|
||||
/// Description = "Depth Bit (vert)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTBITV")]
|
||||
public float? Deptbitv { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 11,
|
||||
/// LongMnemonic = "DEPTBITV",
|
||||
/// ShortMnemonic = "DBTV",
|
||||
/// Description = "Depth Bit (vert)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTBITV")]
|
||||
public float? Deptbitv { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "MDIA",
|
||||
/// ShortMnemonic = "MDIA",
|
||||
/// Description = "Mud Density In (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPG",
|
||||
/// MetricUnits = "KGM3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MDIA")]
|
||||
public float? Mdia { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "MDIA",
|
||||
/// ShortMnemonic = "MDIA",
|
||||
/// Description = "Mud Density In (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPG",
|
||||
/// MetricUnits = "KGM3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MDIA")]
|
||||
public float? Mdia { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "MFIA",
|
||||
/// ShortMnemonic = "MFIA",
|
||||
/// Description = "Mud Flow In (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "GPM",
|
||||
/// MetricUnits = "L/M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MFIA")]
|
||||
public float? Mfia { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "MFIA",
|
||||
/// ShortMnemonic = "MFIA",
|
||||
/// Description = "Mud Flow In (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "GPM",
|
||||
/// MetricUnits = "L/M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MFIA")]
|
||||
public float? Mfia { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "SPPA",
|
||||
/// ShortMnemonic = "SPPA",
|
||||
/// Description = "Standpipe Pressure (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PSI",
|
||||
/// MetricUnits = "KPA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPPA")]
|
||||
public float? Sppa { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "SPPA",
|
||||
/// ShortMnemonic = "SPPA",
|
||||
/// Description = "Standpipe Pressure (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PSI",
|
||||
/// MetricUnits = "KPA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPPA")]
|
||||
public float? Sppa { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "PV",
|
||||
/// ShortMnemonic = "PV",
|
||||
/// Description = "Plastic Viscosity",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "CP",
|
||||
/// MetricUnits = "CP",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("PV")]
|
||||
public float? Pv { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "PV",
|
||||
/// ShortMnemonic = "PV",
|
||||
/// Description = "Plastic Viscosity",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "CP",
|
||||
/// MetricUnits = "CP",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("PV")]
|
||||
public float? Pv { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "YP",
|
||||
/// ShortMnemonic = "YP",
|
||||
/// Description = "Yield Point",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PHSF",
|
||||
/// MetricUnits = "PA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("YP")]
|
||||
public float? Yp { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "YP",
|
||||
/// ShortMnemonic = "YP",
|
||||
/// Description = "Yield Point",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PHSF",
|
||||
/// MetricUnits = "PA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("YP")]
|
||||
public float? Yp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "PLB",
|
||||
/// ShortMnemonic = "PLB",
|
||||
/// Description = "Pressure Loss - bit",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PSI",
|
||||
/// MetricUnits = "KPA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("PLB")]
|
||||
public float? Plb { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "PLB",
|
||||
/// ShortMnemonic = "PLB",
|
||||
/// Description = "Pressure Loss - bit",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PSI",
|
||||
/// MetricUnits = "KPA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("PLB")]
|
||||
public float? Plb { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "PLDS",
|
||||
/// ShortMnemonic = "PLDS",
|
||||
/// Description = "Pressure Loss - string",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PSI",
|
||||
/// MetricUnits = "KPA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("PLDS")]
|
||||
public float? Plds { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "PLDS",
|
||||
/// ShortMnemonic = "PLDS",
|
||||
/// Description = "Pressure Loss - string",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PSI",
|
||||
/// MetricUnits = "KPA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("PLDS")]
|
||||
public float? Plds { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "PLA",
|
||||
/// ShortMnemonic = "PLA",
|
||||
/// Description = "Pressure Loss - annulus",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PSI",
|
||||
/// MetricUnits = "KPA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("PLA")]
|
||||
public float? Pla { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "PLA",
|
||||
/// ShortMnemonic = "PLA",
|
||||
/// Description = "Pressure Loss - annulus",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PSI",
|
||||
/// MetricUnits = "KPA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("PLA")]
|
||||
public float? Pla { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 20,
|
||||
/// LongMnemonic = "PLSU",
|
||||
/// ShortMnemonic = "PLSU",
|
||||
/// Description = "Pressure Loss - surface",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PSI",
|
||||
/// MetricUnits = "KPA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("PLSU")]
|
||||
public float? Plsu { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 20,
|
||||
/// LongMnemonic = "PLSU",
|
||||
/// ShortMnemonic = "PLSU",
|
||||
/// Description = "Pressure Loss - surface",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PSI",
|
||||
/// MetricUnits = "KPA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("PLSU")]
|
||||
public float? Plsu { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 21,
|
||||
/// LongMnemonic = "PLMM",
|
||||
/// ShortMnemonic = "PLMM",
|
||||
/// Description = "Pressure Loss - mud motor",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PSI",
|
||||
/// MetricUnits = "KPA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("PLMM")]
|
||||
public float? Plmm { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 21,
|
||||
/// LongMnemonic = "PLMM",
|
||||
/// ShortMnemonic = "PLMM",
|
||||
/// Description = "Pressure Loss - mud motor",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PSI",
|
||||
/// MetricUnits = "KPA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("PLMM")]
|
||||
public float? Plmm { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 22,
|
||||
/// LongMnemonic = "PLMWD",
|
||||
/// ShortMnemonic = "PLMW",
|
||||
/// Description = "Pressure Loss - MWD tool",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PSI",
|
||||
/// MetricUnits = "KPA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("PLMWD")]
|
||||
public float? Plmwd { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 22,
|
||||
/// LongMnemonic = "PLMWD",
|
||||
/// ShortMnemonic = "PLMW",
|
||||
/// Description = "Pressure Loss - MWD tool",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PSI",
|
||||
/// MetricUnits = "KPA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("PLMWD")]
|
||||
public float? Plmwd { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 23,
|
||||
/// LongMnemonic = "PLPB",
|
||||
/// ShortMnemonic = "PLPB",
|
||||
/// Description = "Pressure Loss - % at bit",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "%",
|
||||
/// MetricUnits = "%",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("PLPB")]
|
||||
public float? Plpb { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 23,
|
||||
/// LongMnemonic = "PLPB",
|
||||
/// ShortMnemonic = "PLPB",
|
||||
/// Description = "Pressure Loss - % at bit",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "%",
|
||||
/// MetricUnits = "%",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("PLPB")]
|
||||
public float? Plpb { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 24,
|
||||
/// LongMnemonic = "BHP",
|
||||
/// ShortMnemonic = "BHP",
|
||||
/// Description = "Bit Hydraulic Power",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "HP",
|
||||
/// MetricUnits = "KW",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("BHP")]
|
||||
public float? Bhp { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 24,
|
||||
/// LongMnemonic = "BHP",
|
||||
/// ShortMnemonic = "BHP",
|
||||
/// Description = "Bit Hydraulic Power",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "HP",
|
||||
/// MetricUnits = "KW",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("BHP")]
|
||||
public float? Bhp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 25,
|
||||
/// LongMnemonic = "BHPA",
|
||||
/// ShortMnemonic = "BHPA",
|
||||
/// Description = "Bit Hydraulic Power/Area",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "HSI",
|
||||
/// MetricUnits = "KWM2",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("BHPA")]
|
||||
public float? Bhpa { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 25,
|
||||
/// LongMnemonic = "BHPA",
|
||||
/// ShortMnemonic = "BHPA",
|
||||
/// Description = "Bit Hydraulic Power/Area",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "HSI",
|
||||
/// MetricUnits = "KWM2",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("BHPA")]
|
||||
public float? Bhpa { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 26,
|
||||
/// LongMnemonic = "JIF",
|
||||
/// ShortMnemonic = "JIF",
|
||||
/// Description = "Jet Impact Force",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "LB",
|
||||
/// MetricUnits = "KDN",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("JIF")]
|
||||
public float? Jif { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 26,
|
||||
/// LongMnemonic = "JIF",
|
||||
/// ShortMnemonic = "JIF",
|
||||
/// Description = "Jet Impact Force",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "LB",
|
||||
/// MetricUnits = "KDN",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("JIF")]
|
||||
public float? Jif { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 27,
|
||||
/// LongMnemonic = "JV",
|
||||
/// ShortMnemonic = "JV",
|
||||
/// Description = "Jet Velocity",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "FPS",
|
||||
/// MetricUnits = "M/S",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("JV")]
|
||||
public float? Jv { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 27,
|
||||
/// LongMnemonic = "JV",
|
||||
/// ShortMnemonic = "JV",
|
||||
/// Description = "Jet Velocity",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "FPS",
|
||||
/// MetricUnits = "M/S",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("JV")]
|
||||
public float? Jv { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 28,
|
||||
/// LongMnemonic = "AVELN",
|
||||
/// ShortMnemonic = "AVN",
|
||||
/// Description = "Annular Velocity (min)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "FPM",
|
||||
/// MetricUnits = "M/S",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("AVELN")]
|
||||
public float? Aveln { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 28,
|
||||
/// LongMnemonic = "AVELN",
|
||||
/// ShortMnemonic = "AVN",
|
||||
/// Description = "Annular Velocity (min)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "FPM",
|
||||
/// MetricUnits = "M/S",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("AVELN")]
|
||||
public float? Aveln { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 29,
|
||||
/// LongMnemonic = "AVELX",
|
||||
/// ShortMnemonic = "AVX",
|
||||
/// Description = "Annular Velocity (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "FPM",
|
||||
/// MetricUnits = "M/S",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("AVELX")]
|
||||
public float? Avelx { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 29,
|
||||
/// LongMnemonic = "AVELX",
|
||||
/// ShortMnemonic = "AVX",
|
||||
/// Description = "Annular Velocity (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "FPM",
|
||||
/// MetricUnits = "M/S",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("AVELX")]
|
||||
public float? Avelx { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 30,
|
||||
/// LongMnemonic = "ECDTD",
|
||||
/// ShortMnemonic = "ECDT",
|
||||
/// Description = "ECD at Total Depth",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPG",
|
||||
/// MetricUnits = "KGM3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("ECDTD")]
|
||||
public float? Ecdtd { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 30,
|
||||
/// LongMnemonic = "ECDTD",
|
||||
/// ShortMnemonic = "ECDT",
|
||||
/// Description = "ECD at Total Depth",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPG",
|
||||
/// MetricUnits = "KGM3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("ECDTD")]
|
||||
public float? Ecdtd { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 31,
|
||||
/// LongMnemonic = "ECDBIT",
|
||||
/// ShortMnemonic = "ECDB",
|
||||
/// Description = "ECD at Bit",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPG",
|
||||
/// MetricUnits = "KGM3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("ECDBIT")]
|
||||
public float? Ecdbit { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 31,
|
||||
/// LongMnemonic = "ECDBIT",
|
||||
/// ShortMnemonic = "ECDB",
|
||||
/// Description = "ECD at Bit",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPG",
|
||||
/// MetricUnits = "KGM3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("ECDBIT")]
|
||||
public float? Ecdbit { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 32,
|
||||
/// LongMnemonic = "ECDCSG",
|
||||
/// ShortMnemonic = "ECDC",
|
||||
/// Description = "ECD at Casing Shoe",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPG",
|
||||
/// MetricUnits = "KGM3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("ECDCSG")]
|
||||
public float? Ecdcsg { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 32,
|
||||
/// LongMnemonic = "ECDCSG",
|
||||
/// ShortMnemonic = "ECDC",
|
||||
/// Description = "ECD at Casing Shoe",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PPG",
|
||||
/// MetricUnits = "KGM3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("ECDCSG")]
|
||||
public float? Ecdcsg { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 33,
|
||||
/// LongMnemonic = "PHP",
|
||||
/// ShortMnemonic = "PHP",
|
||||
/// Description = "Pump Hydraulic Power",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "HP",
|
||||
/// MetricUnits = "KW",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("PHP")]
|
||||
public float? Php { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 33,
|
||||
/// LongMnemonic = "PHP",
|
||||
/// ShortMnemonic = "PHP",
|
||||
/// Description = "Pump Hydraulic Power",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "HP",
|
||||
/// MetricUnits = "KW",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("PHP")]
|
||||
public float? Php { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 34,
|
||||
/// LongMnemonic = "PLCO",
|
||||
/// ShortMnemonic = "PLCO",
|
||||
/// Description = "Calc/Obs Press.Loss ratio",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "%",
|
||||
/// MetricUnits = "%",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("PLCO")]
|
||||
public float? Plco { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 34,
|
||||
/// LongMnemonic = "PLCO",
|
||||
/// ShortMnemonic = "PLCO",
|
||||
/// Description = "Calc/Obs Press.Loss ratio",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "%",
|
||||
/// MetricUnits = "%",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("PLCO")]
|
||||
public float? Plco { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 35,
|
||||
/// LongMnemonic = "SPARE1",
|
||||
/// ShortMnemonic = "SPR1",
|
||||
/// Description = "< SPARE 1>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE1")]
|
||||
public float? Spare1 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 35,
|
||||
/// LongMnemonic = "SPARE1",
|
||||
/// ShortMnemonic = "SPR1",
|
||||
/// Description = "< SPARE 1>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE1")]
|
||||
public float? Spare1 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 36,
|
||||
/// LongMnemonic = "SPARE2",
|
||||
/// ShortMnemonic = "SPR2",
|
||||
/// Description = "< SPARE 2>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE2")]
|
||||
public float? Spare2 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 36,
|
||||
/// LongMnemonic = "SPARE2",
|
||||
/// ShortMnemonic = "SPR2",
|
||||
/// Description = "< SPARE 2>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE2")]
|
||||
public float? Spare2 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 37,
|
||||
/// LongMnemonic = "SPARE3",
|
||||
/// ShortMnemonic = "SPR3",
|
||||
/// Description = "< SPARE 3>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE3")]
|
||||
public float? Spare3 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 37,
|
||||
/// LongMnemonic = "SPARE3",
|
||||
/// ShortMnemonic = "SPR3",
|
||||
/// Description = "< SPARE 3>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE3")]
|
||||
public float? Spare3 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 38,
|
||||
/// LongMnemonic = "SPARE4",
|
||||
/// ShortMnemonic = "SPR4",
|
||||
/// Description = "< SPARE 4>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE4")]
|
||||
public float? Spare4 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 38,
|
||||
/// LongMnemonic = "SPARE4",
|
||||
/// ShortMnemonic = "SPR4",
|
||||
/// Description = "< SPARE 4>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE4")]
|
||||
public float? Spare4 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 39,
|
||||
/// LongMnemonic = "SPARE5",
|
||||
/// ShortMnemonic = "SPR5",
|
||||
/// Description = "< SPARE 5>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE5")]
|
||||
public float? Spare5 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 4,
|
||||
/// ItemId = 39,
|
||||
/// LongMnemonic = "SPARE5",
|
||||
/// ShortMnemonic = "SPR5",
|
||||
/// Description = "< SPARE 5>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE5")]
|
||||
public float? Spare5 { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,255 +1,255 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace AsbCloudDb.Model.WITS
|
||||
{
|
||||
/// <summary>
|
||||
/// Record name: Trip - Time
|
||||
/// Description: Tripping data gathered while running in/pulling out
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_5")]
|
||||
public class Record5: RecordBase {
|
||||
/// <summary>
|
||||
/// Record name: Trip - Time
|
||||
/// Description: Tripping data gathered while running in/pulling out
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_5")]
|
||||
public class Record5 : RecordBase
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 5,
|
||||
/// ItemId = 8,
|
||||
/// LongMnemonic = "DEPTBITM",
|
||||
/// ShortMnemonic = "DBTM",
|
||||
/// Description = "Depth Bit (meas)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTBITM")]
|
||||
public float? Deptbitm { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 5,
|
||||
/// ItemId = 8,
|
||||
/// LongMnemonic = "DEPTBITM",
|
||||
/// ShortMnemonic = "DBTM",
|
||||
/// Description = "Depth Bit (meas)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTBITM")]
|
||||
public float? Deptbitm { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 5,
|
||||
/// ItemId = 9,
|
||||
/// LongMnemonic = "DEPTBITV",
|
||||
/// ShortMnemonic = "DBTV",
|
||||
/// Description = "Depth Bit (vert)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTBITV")]
|
||||
public float? Deptbitv { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 5,
|
||||
/// ItemId = 9,
|
||||
/// LongMnemonic = "DEPTBITV",
|
||||
/// ShortMnemonic = "DBTV",
|
||||
/// Description = "Depth Bit (vert)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTBITV")]
|
||||
public float? Deptbitv { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 5,
|
||||
/// ItemId = 10,
|
||||
/// 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 = 5,
|
||||
/// ItemId = 10,
|
||||
/// 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 = 5,
|
||||
/// ItemId = 11,
|
||||
/// 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 = 5,
|
||||
/// ItemId = 11,
|
||||
/// 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 = 5,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "TRIPNUM",
|
||||
/// ShortMnemonic = "TNUM",
|
||||
/// Description = "Trip Number",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("TRIPNUM")]
|
||||
public short? Tripnum { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 5,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "TRIPNUM",
|
||||
/// ShortMnemonic = "TNUM",
|
||||
/// Description = "Trip Number",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("TRIPNUM")]
|
||||
public short? Tripnum { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 5,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "STATUSIS",
|
||||
/// ShortMnemonic = "STIS",
|
||||
/// Description = "In-Slips Status",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 2,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("STATUSIS")]
|
||||
public string? Statusis { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 5,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "STATUSIS",
|
||||
/// ShortMnemonic = "STIS",
|
||||
/// Description = "In-Slips Status",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 2,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("STATUSIS")]
|
||||
public string? Statusis { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 5,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "HKLA",
|
||||
/// ShortMnemonic = "HKLA",
|
||||
/// Description = "Hookload (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KLB",
|
||||
/// MetricUnits = "KDN",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("HKLA")]
|
||||
public float? Hkla { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 5,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "HKLA",
|
||||
/// ShortMnemonic = "HKLA",
|
||||
/// Description = "Hookload (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KLB",
|
||||
/// MetricUnits = "KDN",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("HKLA")]
|
||||
public float? Hkla { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 5,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "BLKPOS",
|
||||
/// ShortMnemonic = "BPOS",
|
||||
/// Description = "Block Position",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("BLKPOS")]
|
||||
public float? Blkpos { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 5,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "BLKPOS",
|
||||
/// ShortMnemonic = "BPOS",
|
||||
/// Description = "Block Position",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("BLKPOS")]
|
||||
public float? Blkpos { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 5,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "RSUX",
|
||||
/// ShortMnemonic = "RSUX",
|
||||
/// Description = "Running Speed - up (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "FPM",
|
||||
/// MetricUnits = "M/S",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("RSUX")]
|
||||
public float? Rsux { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 5,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "RSUX",
|
||||
/// ShortMnemonic = "RSUX",
|
||||
/// Description = "Running Speed - up (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "FPM",
|
||||
/// MetricUnits = "M/S",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("RSUX")]
|
||||
public float? Rsux { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 5,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "RSDX",
|
||||
/// ShortMnemonic = "RSDX",
|
||||
/// Description = "Running Speed - down (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "FPM",
|
||||
/// MetricUnits = "M/S",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("RSDX")]
|
||||
public float? Rsdx { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 5,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "RSDX",
|
||||
/// ShortMnemonic = "RSDX",
|
||||
/// Description = "Running Speed - down (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "FPM",
|
||||
/// MetricUnits = "M/S",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("RSDX")]
|
||||
public float? Rsdx { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 5,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "FVOLOC",
|
||||
/// ShortMnemonic = "FVOC",
|
||||
/// Description = "Fill/Gain Volume Obs.(cum)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("FVOLOC")]
|
||||
public float? Fvoloc { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 5,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "FVOLOC",
|
||||
/// ShortMnemonic = "FVOC",
|
||||
/// Description = "Fill/Gain Volume Obs.(cum)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("FVOLOC")]
|
||||
public float? Fvoloc { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 5,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "SPARE1",
|
||||
/// ShortMnemonic = "SPR1",
|
||||
/// Description = "< SPARE 1>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE1")]
|
||||
public float? Spare1 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 5,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "SPARE1",
|
||||
/// ShortMnemonic = "SPR1",
|
||||
/// Description = "< SPARE 1>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE1")]
|
||||
public float? Spare1 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 5,
|
||||
/// ItemId = 20,
|
||||
/// LongMnemonic = "SPARE2",
|
||||
/// ShortMnemonic = "SPR2",
|
||||
/// Description = "< SPARE 2>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE2")]
|
||||
public float? Spare2 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 5,
|
||||
/// ItemId = 20,
|
||||
/// LongMnemonic = "SPARE2",
|
||||
/// ShortMnemonic = "SPR2",
|
||||
/// Description = "< SPARE 2>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE2")]
|
||||
public float? Spare2 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 5,
|
||||
/// ItemId = 21,
|
||||
/// LongMnemonic = "SPARE3",
|
||||
/// ShortMnemonic = "SPR3",
|
||||
/// Description = "< SPARE 3>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE3")]
|
||||
public float? Spare3 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 5,
|
||||
/// ItemId = 21,
|
||||
/// LongMnemonic = "SPARE3",
|
||||
/// ShortMnemonic = "SPR3",
|
||||
/// Description = "< SPARE 3>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE3")]
|
||||
public float? Spare3 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 5,
|
||||
/// ItemId = 22,
|
||||
/// LongMnemonic = "SPARE4",
|
||||
/// ShortMnemonic = "SPR4",
|
||||
/// Description = "< SPARE 4>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE4")]
|
||||
public float? Spare4 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 5,
|
||||
/// ItemId = 22,
|
||||
/// LongMnemonic = "SPARE4",
|
||||
/// ShortMnemonic = "SPR4",
|
||||
/// Description = "< SPARE 4>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE4")]
|
||||
public float? Spare4 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 5,
|
||||
/// ItemId = 23,
|
||||
/// LongMnemonic = "SPARE5",
|
||||
/// ShortMnemonic = "SPR5",
|
||||
/// Description = "< SPARE 5>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE5")]
|
||||
public float? Spare5 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 5,
|
||||
/// ItemId = 23,
|
||||
/// LongMnemonic = "SPARE5",
|
||||
/// ShortMnemonic = "SPR5",
|
||||
/// Description = "< SPARE 5>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE5")]
|
||||
public float? Spare5 { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,300 +1,300 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace AsbCloudDb.Model.WITS
|
||||
{
|
||||
/// <summary>
|
||||
/// Record name: Резистивиметр MCR
|
||||
/// Description: SibReciver. Резистивиметр MCR
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_50")]
|
||||
public class Record50: RecordBase {
|
||||
/// <summary>
|
||||
/// Record name: Резистивиметр MCR
|
||||
/// Description: SibReciver. Резистивиметр MCR
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_50")]
|
||||
public class Record50 : RecordBase
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 8,
|
||||
/// LongMnemonic = "DEPTBITM",
|
||||
/// ShortMnemonic = "DBTM",
|
||||
/// Description = "SibReceiver custom. Положение долота",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTBITM")]
|
||||
public float? Deptbitm { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 8,
|
||||
/// LongMnemonic = "DEPTBITM",
|
||||
/// ShortMnemonic = "DBTM",
|
||||
/// Description = "SibReceiver custom. Положение долота",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTBITM")]
|
||||
public float? Deptbitm { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 10,
|
||||
/// LongMnemonic = "DEPTMEAS_MCRSTAT",
|
||||
/// ShortMnemonic = "DEPTMEAS_MCRSTAT",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTMEAS_MCRSTAT")]
|
||||
public float? DeptmeasMcrstat { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 10,
|
||||
/// LongMnemonic = "DEPTMEAS_MCRSTAT",
|
||||
/// ShortMnemonic = "DEPTMEAS_MCRSTAT",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTMEAS_MCRSTAT")]
|
||||
public float? DeptmeasMcrstat { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 11,
|
||||
/// LongMnemonic = "MCRSTAT",
|
||||
/// ShortMnemonic = "MCRSTAT",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MCRSTAT")]
|
||||
public float? Mcrstat { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 11,
|
||||
/// LongMnemonic = "MCRSTAT",
|
||||
/// ShortMnemonic = "MCRSTAT",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MCRSTAT")]
|
||||
public float? Mcrstat { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "DEPTMEAS_SLVL_mc",
|
||||
/// ShortMnemonic = "DEPTMEAS_SLVL_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTMEAS_SLVL_mc")]
|
||||
public float? DeptmeasSlvlMc { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "DEPTMEAS_SLVL_mc",
|
||||
/// ShortMnemonic = "DEPTMEAS_SLVL_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTMEAS_SLVL_mc")]
|
||||
public float? DeptmeasSlvlMc { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "SLVL_mc",
|
||||
/// ShortMnemonic = "SLVL_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SLVL_mc")]
|
||||
public float? SlvlMc { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "SLVL_mc",
|
||||
/// ShortMnemonic = "SLVL_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SLVL_mc")]
|
||||
public float? SlvlMc { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "DEPTMEAS_GDP_mc",
|
||||
/// ShortMnemonic = "DEPTMEAS_GDP_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTMEAS_GDP_mc")]
|
||||
public float? DeptmeasGdpMc { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "DEPTMEAS_GDP_mc",
|
||||
/// ShortMnemonic = "DEPTMEAS_GDP_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTMEAS_GDP_mc")]
|
||||
public float? DeptmeasGdpMc { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "GDP_mc",
|
||||
/// ShortMnemonic = "GDP_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("GDP_mc")]
|
||||
public float? GdpMc { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "GDP_mc",
|
||||
/// ShortMnemonic = "GDP_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("GDP_mc")]
|
||||
public float? GdpMc { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "DEPTMEAS_RA33F2_mc",
|
||||
/// ShortMnemonic = "DEPTMEAS_RA33F2_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTMEAS_RA33F2_mc")]
|
||||
public float? DeptmeasRa33f2Mc { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "DEPTMEAS_RA33F2_mc",
|
||||
/// ShortMnemonic = "DEPTMEAS_RA33F2_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTMEAS_RA33F2_mc")]
|
||||
public float? DeptmeasRa33f2Mc { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "RA33F2_mc",
|
||||
/// ShortMnemonic = "RA33F2_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("RA33F2_mc")]
|
||||
public float? Ra33f2Mc { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "RA33F2_mc",
|
||||
/// ShortMnemonic = "RA33F2_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("RA33F2_mc")]
|
||||
public float? Ra33f2Mc { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "DEPTMEAS_RP33F2_mc",
|
||||
/// ShortMnemonic = "DEPTMEAS_RP33F2_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTMEAS_RP33F2_mc")]
|
||||
public float? DeptmeasRp33f2Mc { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "DEPTMEAS_RP33F2_mc",
|
||||
/// ShortMnemonic = "DEPTMEAS_RP33F2_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTMEAS_RP33F2_mc")]
|
||||
public float? DeptmeasRp33f2Mc { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "RP33F2_mc",
|
||||
/// ShortMnemonic = "RP33F2_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("RP33F2_mc")]
|
||||
public float? Rp33f2Mc { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "RP33F2_mc",
|
||||
/// ShortMnemonic = "RP33F2_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("RP33F2_mc")]
|
||||
public float? Rp33f2Mc { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 20,
|
||||
/// LongMnemonic = "DEPTMEAS_RA33F4_mc",
|
||||
/// ShortMnemonic = "DEPTMEAS_RA33F4_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTMEAS_RA33F4_mc")]
|
||||
public float? DeptmeasRa33f4Mc { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 20,
|
||||
/// LongMnemonic = "DEPTMEAS_RA33F4_mc",
|
||||
/// ShortMnemonic = "DEPTMEAS_RA33F4_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTMEAS_RA33F4_mc")]
|
||||
public float? DeptmeasRa33f4Mc { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 21,
|
||||
/// LongMnemonic = "RA33F4_mc",
|
||||
/// ShortMnemonic = "RA33F4_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("RA33F4_mc")]
|
||||
public float? Ra33f4Mc { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 21,
|
||||
/// LongMnemonic = "RA33F4_mc",
|
||||
/// ShortMnemonic = "RA33F4_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("RA33F4_mc")]
|
||||
public float? Ra33f4Mc { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 22,
|
||||
/// LongMnemonic = "DEPTMEAS_RP33F4_mc",
|
||||
/// ShortMnemonic = "DEPTMEAS_RP33F4_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTMEAS_RP33F4_mc")]
|
||||
public float? DeptmeasRp33f4Mc { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 22,
|
||||
/// LongMnemonic = "DEPTMEAS_RP33F4_mc",
|
||||
/// ShortMnemonic = "DEPTMEAS_RP33F4_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTMEAS_RP33F4_mc")]
|
||||
public float? DeptmeasRp33f4Mc { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 23,
|
||||
/// LongMnemonic = "RP33F4_mc",
|
||||
/// ShortMnemonic = "RP33F4_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("RP33F4_mc")]
|
||||
public float? Rp33f4Mc { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 23,
|
||||
/// LongMnemonic = "RP33F4_mc",
|
||||
/// ShortMnemonic = "RP33F4_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("RP33F4_mc")]
|
||||
public float? Rp33f4Mc { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 46,
|
||||
/// LongMnemonic = "DEPTMEAS_RA33_mc",
|
||||
/// ShortMnemonic = "DEPTMEAS_RA33_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTMEAS_RA33_mc")]
|
||||
public float? DeptmeasRa33Mc { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 46,
|
||||
/// LongMnemonic = "DEPTMEAS_RA33_mc",
|
||||
/// ShortMnemonic = "DEPTMEAS_RA33_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTMEAS_RA33_mc")]
|
||||
public float? DeptmeasRa33Mc { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 47,
|
||||
/// LongMnemonic = "RA33_mc",
|
||||
/// ShortMnemonic = "RA33_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("RA33_mc")]
|
||||
public float? Ra33Mc { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 47,
|
||||
/// LongMnemonic = "RA33_mc",
|
||||
/// ShortMnemonic = "RA33_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("RA33_mc")]
|
||||
public float? Ra33Mc { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 28,
|
||||
/// LongMnemonic = "DEPTMEAS_RP33_mc",
|
||||
/// ShortMnemonic = "DEPTMEAS_RP33_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTMEAS_RP33_mc")]
|
||||
public float? DeptmeasRp33Mc { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 28,
|
||||
/// LongMnemonic = "DEPTMEAS_RP33_mc",
|
||||
/// ShortMnemonic = "DEPTMEAS_RP33_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTMEAS_RP33_mc")]
|
||||
public float? DeptmeasRp33Mc { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 29,
|
||||
/// LongMnemonic = "RP33_mc",
|
||||
/// ShortMnemonic = "RP33_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("RP33_mc")]
|
||||
public float? Rp33Mc { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 50,
|
||||
/// ItemId = 29,
|
||||
/// LongMnemonic = "RP33_mc",
|
||||
/// ShortMnemonic = "RP33_mc",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("RP33_mc")]
|
||||
public float? Rp33Mc { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,420 +1,420 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace AsbCloudDb.Model.WITS
|
||||
{
|
||||
/// <summary>
|
||||
/// Record name: Trip - Connections
|
||||
/// Description: Tripping data gathered at tripping connections
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_6")]
|
||||
public class Record6: RecordBase {
|
||||
/// <summary>
|
||||
/// Record name: Trip - Connections
|
||||
/// Description: Tripping data gathered at tripping connections
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_6")]
|
||||
public class Record6 : RecordBase
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 8,
|
||||
/// LongMnemonic = "DEPTBITM",
|
||||
/// ShortMnemonic = "DBTM",
|
||||
/// Description = "Depth Bit (meas)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTBITM")]
|
||||
public float? Deptbitm { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 8,
|
||||
/// LongMnemonic = "DEPTBITM",
|
||||
/// ShortMnemonic = "DBTM",
|
||||
/// Description = "Depth Bit (meas)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTBITM")]
|
||||
public float? Deptbitm { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 9,
|
||||
/// LongMnemonic = "DEPTBITV",
|
||||
/// ShortMnemonic = "DBTV",
|
||||
/// Description = "Depth Bit (vert)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTBITV")]
|
||||
public float? Deptbitv { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 9,
|
||||
/// LongMnemonic = "DEPTBITV",
|
||||
/// ShortMnemonic = "DBTV",
|
||||
/// Description = "Depth Bit (vert)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTBITV")]
|
||||
public float? Deptbitv { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 10,
|
||||
/// 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 = 6,
|
||||
/// ItemId = 10,
|
||||
/// 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 = 6,
|
||||
/// ItemId = 11,
|
||||
/// 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 = 6,
|
||||
/// ItemId = 11,
|
||||
/// 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 = 6,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "TRIPNUM",
|
||||
/// ShortMnemonic = "TNUM",
|
||||
/// Description = "Trip Number",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("TRIPNUM")]
|
||||
public short? Tripnum { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "TRIPNUM",
|
||||
/// ShortMnemonic = "TNUM",
|
||||
/// Description = "Trip Number",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("TRIPNUM")]
|
||||
public short? Tripnum { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "CONNDONE",
|
||||
/// ShortMnemonic = "CDON",
|
||||
/// Description = "Connections Done",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("CONNDONE")]
|
||||
public short? Conndone { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "CONNDONE",
|
||||
/// ShortMnemonic = "CDON",
|
||||
/// Description = "Connections Done",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("CONNDONE")]
|
||||
public short? Conndone { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "CONNREM",
|
||||
/// ShortMnemonic = "CREM",
|
||||
/// Description = "Connections Remaining",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("CONNREM")]
|
||||
public short? Connrem { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "CONNREM",
|
||||
/// ShortMnemonic = "CREM",
|
||||
/// Description = "Connections Remaining",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("CONNREM")]
|
||||
public short? Connrem { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "ETIMESLP",
|
||||
/// ShortMnemonic = "ETSL",
|
||||
/// Description = "Elapsed Time In-Slips",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "SEC",
|
||||
/// MetricUnits = "SEC",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("ETIMESLP")]
|
||||
public short? Etimeslp { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "ETIMESLP",
|
||||
/// ShortMnemonic = "ETSL",
|
||||
/// Description = "Elapsed Time In-Slips",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "SEC",
|
||||
/// MetricUnits = "SEC",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("ETIMESLP")]
|
||||
public short? Etimeslp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "ETIMEOS",
|
||||
/// ShortMnemonic = "ETOS",
|
||||
/// Description = "Elapsed Time Out-of-Slips",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "SEC",
|
||||
/// MetricUnits = "SEC",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("ETIMEOS")]
|
||||
public short? Etimeos { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "ETIMEOS",
|
||||
/// ShortMnemonic = "ETOS",
|
||||
/// Description = "Elapsed Time Out-of-Slips",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "SEC",
|
||||
/// MetricUnits = "SEC",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("ETIMEOS")]
|
||||
public short? Etimeos { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "RSUX",
|
||||
/// ShortMnemonic = "RSUX",
|
||||
/// Description = "Running Speed -up (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "FPM",
|
||||
/// MetricUnits = "M/S",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("RSUX")]
|
||||
public float? Rsux { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "RSUX",
|
||||
/// ShortMnemonic = "RSUX",
|
||||
/// Description = "Running Speed -up (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "FPM",
|
||||
/// MetricUnits = "M/S",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("RSUX")]
|
||||
public float? Rsux { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "RSUA",
|
||||
/// ShortMnemonic = "RSUA",
|
||||
/// Description = "Running Speed -up (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "FPM",
|
||||
/// MetricUnits = "M/S",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("RSUA")]
|
||||
public float? Rsua { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "RSUA",
|
||||
/// ShortMnemonic = "RSUA",
|
||||
/// Description = "Running Speed -up (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "FPM",
|
||||
/// MetricUnits = "M/S",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("RSUA")]
|
||||
public float? Rsua { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "RSDX",
|
||||
/// ShortMnemonic = "RSDX",
|
||||
/// Description = "Running Speed -down (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "FPM",
|
||||
/// MetricUnits = "M/S",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("RSDX")]
|
||||
public float? Rsdx { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "RSDX",
|
||||
/// ShortMnemonic = "RSDX",
|
||||
/// Description = "Running Speed -down (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "FPM",
|
||||
/// MetricUnits = "M/S",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("RSDX")]
|
||||
public float? Rsdx { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 20,
|
||||
/// LongMnemonic = "RSDA",
|
||||
/// ShortMnemonic = "RSDA",
|
||||
/// Description = "Running Speed -down (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "FPM",
|
||||
/// MetricUnits = "M/S",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("RSDA")]
|
||||
public float? Rsda { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 20,
|
||||
/// LongMnemonic = "RSDA",
|
||||
/// ShortMnemonic = "RSDA",
|
||||
/// Description = "Running Speed -down (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "FPM",
|
||||
/// MetricUnits = "M/S",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("RSDA")]
|
||||
public float? Rsda { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 21,
|
||||
/// LongMnemonic = "HKLX",
|
||||
/// ShortMnemonic = "HKLX",
|
||||
/// Description = "Hookload (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KLB",
|
||||
/// MetricUnits = "KDN",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("HKLX")]
|
||||
public float? Hklx { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 21,
|
||||
/// LongMnemonic = "HKLX",
|
||||
/// ShortMnemonic = "HKLX",
|
||||
/// Description = "Hookload (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KLB",
|
||||
/// MetricUnits = "KDN",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("HKLX")]
|
||||
public float? Hklx { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 22,
|
||||
/// LongMnemonic = "HKLN",
|
||||
/// ShortMnemonic = "HKLN",
|
||||
/// Description = "Hookload (min)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KLB",
|
||||
/// MetricUnits = "KDN",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("HKLN")]
|
||||
public float? Hkln { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 22,
|
||||
/// LongMnemonic = "HKLN",
|
||||
/// ShortMnemonic = "HKLN",
|
||||
/// Description = "Hookload (min)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KLB",
|
||||
/// MetricUnits = "KDN",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("HKLN")]
|
||||
public float? Hkln { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 23,
|
||||
/// LongMnemonic = "HKLA",
|
||||
/// ShortMnemonic = "HKLA",
|
||||
/// Description = "Hookload (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KLB",
|
||||
/// MetricUnits = "KDN",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("HKLA")]
|
||||
public float? Hkla { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 23,
|
||||
/// LongMnemonic = "HKLA",
|
||||
/// ShortMnemonic = "HKLA",
|
||||
/// Description = "Hookload (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KLB",
|
||||
/// MetricUnits = "KDN",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("HKLA")]
|
||||
public float? Hkla { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 24,
|
||||
/// LongMnemonic = "TORQMUX",
|
||||
/// ShortMnemonic = "TQMX",
|
||||
/// Description = "Torque - Make Up (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KFLB",
|
||||
/// MetricUnits = "KNM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TORQMUX")]
|
||||
public float? Torqmux { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 24,
|
||||
/// LongMnemonic = "TORQMUX",
|
||||
/// ShortMnemonic = "TQMX",
|
||||
/// Description = "Torque - Make Up (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KFLB",
|
||||
/// MetricUnits = "KNM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TORQMUX")]
|
||||
public float? Torqmux { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 25,
|
||||
/// LongMnemonic = "TORQBOX",
|
||||
/// ShortMnemonic = "TQBX",
|
||||
/// Description = "Torque - Breakout (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KFLB",
|
||||
/// MetricUnits = "KNM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TORQBOX")]
|
||||
public float? Torqbox { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 25,
|
||||
/// LongMnemonic = "TORQBOX",
|
||||
/// ShortMnemonic = "TQBX",
|
||||
/// Description = "Torque - Breakout (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KFLB",
|
||||
/// MetricUnits = "KNM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("TORQBOX")]
|
||||
public float? Torqbox { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 26,
|
||||
/// LongMnemonic = "FVOLO",
|
||||
/// ShortMnemonic = "FVO",
|
||||
/// Description = "Fill/Gain Volume Obs.",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("FVOLO")]
|
||||
public float? Fvolo { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 26,
|
||||
/// LongMnemonic = "FVOLO",
|
||||
/// ShortMnemonic = "FVO",
|
||||
/// Description = "Fill/Gain Volume Obs.",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("FVOLO")]
|
||||
public float? Fvolo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 27,
|
||||
/// LongMnemonic = "FVOLE",
|
||||
/// ShortMnemonic = "FVE",
|
||||
/// Description = "Fill/Gain Volume Exp.",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("FVOLE")]
|
||||
public float? Fvole { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 27,
|
||||
/// LongMnemonic = "FVOLE",
|
||||
/// ShortMnemonic = "FVE",
|
||||
/// Description = "Fill/Gain Volume Exp.",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("FVOLE")]
|
||||
public float? Fvole { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 28,
|
||||
/// LongMnemonic = "FVOLOC",
|
||||
/// ShortMnemonic = "FVOC",
|
||||
/// Description = "Fill/Gain Volume Obs.(cum)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("FVOLOC")]
|
||||
public float? Fvoloc { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 28,
|
||||
/// LongMnemonic = "FVOLOC",
|
||||
/// ShortMnemonic = "FVOC",
|
||||
/// Description = "Fill/Gain Volume Obs.(cum)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("FVOLOC")]
|
||||
public float? Fvoloc { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 29,
|
||||
/// LongMnemonic = "FVOLEC",
|
||||
/// ShortMnemonic = "FVEC",
|
||||
/// Description = "Fill/Gain Volume Exp (cum)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("FVOLEC")]
|
||||
public float? Fvolec { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 29,
|
||||
/// LongMnemonic = "FVOLEC",
|
||||
/// ShortMnemonic = "FVEC",
|
||||
/// Description = "Fill/Gain Volume Exp (cum)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "BBL",
|
||||
/// MetricUnits = "M3",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("FVOLEC")]
|
||||
public float? Fvolec { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 30,
|
||||
/// LongMnemonic = "SPARE1",
|
||||
/// ShortMnemonic = "SPR1",
|
||||
/// Description = "< SPARE 1>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE1")]
|
||||
public float? Spare1 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 30,
|
||||
/// LongMnemonic = "SPARE1",
|
||||
/// ShortMnemonic = "SPR1",
|
||||
/// Description = "< SPARE 1>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE1")]
|
||||
public float? Spare1 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 31,
|
||||
/// LongMnemonic = "SPARE2",
|
||||
/// ShortMnemonic = "SPR2",
|
||||
/// Description = "< SPARE 2>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE2")]
|
||||
public float? Spare2 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 31,
|
||||
/// LongMnemonic = "SPARE2",
|
||||
/// ShortMnemonic = "SPR2",
|
||||
/// Description = "< SPARE 2>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE2")]
|
||||
public float? Spare2 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 32,
|
||||
/// LongMnemonic = "SPARE3",
|
||||
/// ShortMnemonic = "SPR3",
|
||||
/// Description = "< SPARE 3>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE3")]
|
||||
public float? Spare3 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 32,
|
||||
/// LongMnemonic = "SPARE3",
|
||||
/// ShortMnemonic = "SPR3",
|
||||
/// Description = "< SPARE 3>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE3")]
|
||||
public float? Spare3 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 33,
|
||||
/// LongMnemonic = "SPARE4",
|
||||
/// ShortMnemonic = "SPR4",
|
||||
/// Description = "< SPARE 4>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE4")]
|
||||
public float? Spare4 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 33,
|
||||
/// LongMnemonic = "SPARE4",
|
||||
/// ShortMnemonic = "SPR4",
|
||||
/// Description = "< SPARE 4>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE4")]
|
||||
public float? Spare4 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 34,
|
||||
/// LongMnemonic = "SPARE5",
|
||||
/// ShortMnemonic = "SPR5",
|
||||
/// Description = "< SPARE 5>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE5")]
|
||||
public float? Spare5 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 6,
|
||||
/// ItemId = 34,
|
||||
/// LongMnemonic = "SPARE5",
|
||||
/// ShortMnemonic = "SPR5",
|
||||
/// Description = "< SPARE 5>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE5")]
|
||||
public float? Spare5 { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,165 +1,165 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace AsbCloudDb.Model.WITS
|
||||
{
|
||||
/// <summary>
|
||||
/// Record name: Передача полных
|
||||
/// Description: SibReciver. Передача полных
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_60")]
|
||||
public class Record60: RecordBase {
|
||||
/// <summary>
|
||||
/// Record name: Передача полных
|
||||
/// Description: SibReciver. Передача полных
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_60")]
|
||||
public class Record60 : RecordBase
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 60,
|
||||
/// ItemId = 99,
|
||||
/// LongMnemonic = "DEPTBITM",
|
||||
/// ShortMnemonic = "DBTM",
|
||||
/// Description = "SibReceiver custom. Положение долота",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTBITM")]
|
||||
public float? Deptbitm { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 60,
|
||||
/// ItemId = 99,
|
||||
/// LongMnemonic = "DEPTBITM",
|
||||
/// ShortMnemonic = "DBTM",
|
||||
/// Description = "SibReceiver custom. Положение долота",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTBITM")]
|
||||
public float? Deptbitm { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 60,
|
||||
/// ItemId = 10,
|
||||
/// LongMnemonic = "DEPTMEAS",
|
||||
/// ShortMnemonic = "DMEA",
|
||||
/// Description = "SibReceiver custom. Точка Замера",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTMEAS")]
|
||||
public float? Deptmeas { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 60,
|
||||
/// ItemId = 10,
|
||||
/// LongMnemonic = "DEPTMEAS",
|
||||
/// ShortMnemonic = "DMEA",
|
||||
/// Description = "SibReceiver custom. Точка Замера",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTMEAS")]
|
||||
public float? Deptmeas { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 60,
|
||||
/// ItemId = 11,
|
||||
/// LongMnemonic = "Gtot",
|
||||
/// ShortMnemonic = "Gtot",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("Gtot")]
|
||||
public float? Gtot { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 60,
|
||||
/// ItemId = 11,
|
||||
/// LongMnemonic = "Gtot",
|
||||
/// ShortMnemonic = "Gtot",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("Gtot")]
|
||||
public float? Gtot { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 60,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "Gx",
|
||||
/// ShortMnemonic = "Gx",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("Gx")]
|
||||
public float? Gx { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 60,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "Gx",
|
||||
/// ShortMnemonic = "Gx",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("Gx")]
|
||||
public float? Gx { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 60,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "Gy",
|
||||
/// ShortMnemonic = "Gy",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("Gy")]
|
||||
public float? Gy { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 60,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "Gy",
|
||||
/// ShortMnemonic = "Gy",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("Gy")]
|
||||
public float? Gy { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 60,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "Gz",
|
||||
/// ShortMnemonic = "Gz",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("Gz")]
|
||||
public float? Gz { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 60,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "Gz",
|
||||
/// ShortMnemonic = "Gz",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("Gz")]
|
||||
public float? Gz { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 60,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "Btot",
|
||||
/// ShortMnemonic = "Btot",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("Btot")]
|
||||
public float? Btot { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 60,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "Btot",
|
||||
/// ShortMnemonic = "Btot",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("Btot")]
|
||||
public float? Btot { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 60,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "Bx",
|
||||
/// ShortMnemonic = "Bx",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("Bx")]
|
||||
public float? Bx { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 60,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "Bx",
|
||||
/// ShortMnemonic = "Bx",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("Bx")]
|
||||
public float? Bx { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 60,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "By",
|
||||
/// ShortMnemonic = "By",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("By")]
|
||||
public float? By { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 60,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "By",
|
||||
/// ShortMnemonic = "By",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("By")]
|
||||
public float? By { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 60,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "Bz",
|
||||
/// ShortMnemonic = "Bz",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("Bz")]
|
||||
public float? Bz { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 60,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "Bz",
|
||||
/// ShortMnemonic = "Bz",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("Bz")]
|
||||
public float? Bz { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,180 +1,180 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace AsbCloudDb.Model.WITS
|
||||
{
|
||||
/// <summary>
|
||||
/// Record name: Резистивиметр Corvet
|
||||
/// Description: SibReciver. Резистивиметр Corvet
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_61")]
|
||||
public class Record61: RecordBase {
|
||||
/// <summary>
|
||||
/// Record name: Резистивиметр Corvet
|
||||
/// Description: SibReciver. Резистивиметр Corvet
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_61")]
|
||||
public class Record61 : RecordBase
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 61,
|
||||
/// ItemId = 99,
|
||||
/// LongMnemonic = "DEPTBITM",
|
||||
/// ShortMnemonic = "DBTM",
|
||||
/// Description = "SibReceiver custom. Положение долота",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTBITM")]
|
||||
public float? Deptbitm { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 61,
|
||||
/// ItemId = 99,
|
||||
/// LongMnemonic = "DEPTBITM",
|
||||
/// ShortMnemonic = "DBTM",
|
||||
/// Description = "SibReceiver custom. Положение долота",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTBITM")]
|
||||
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>
|
||||
[Column("DEPTMEAS")]
|
||||
public float? Deptmeas { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 61,
|
||||
/// ItemId = 10,
|
||||
/// LongMnemonic = "DEPTMEAS",
|
||||
/// ShortMnemonic = "DMEA",
|
||||
/// Description = "SibReceiver custom. Точка Замера",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTMEAS")]
|
||||
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>
|
||||
[Column("PHL1F1")]
|
||||
public float? Phl1f1 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 61,
|
||||
/// ItemId = 11,
|
||||
/// LongMnemonic = "PHL1F1",
|
||||
/// ShortMnemonic = "PHL1F1",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("PHL1F1")]
|
||||
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>
|
||||
[Column("PHL1F2")]
|
||||
public float? Phl1f2 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 61,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "PHL1F2",
|
||||
/// ShortMnemonic = "PHL1F2",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("PHL1F2")]
|
||||
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>
|
||||
[Column("PHL2F1")]
|
||||
public float? Phl2f1 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 61,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "PHL2F1",
|
||||
/// ShortMnemonic = "PHL2F1",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("PHL2F1")]
|
||||
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>
|
||||
[Column("PHL2F2")]
|
||||
public float? Phl2f2 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 61,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "PHL2F2",
|
||||
/// ShortMnemonic = "PHL2F2",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("PHL2F2")]
|
||||
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>
|
||||
[Column("ATT06H")]
|
||||
public float? Att06h { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 61,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "ATT06H",
|
||||
/// ShortMnemonic = "ATT06H",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("ATT06H")]
|
||||
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>
|
||||
[Column("ATT06L")]
|
||||
public float? Att06l { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 61,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "ATT06L",
|
||||
/// ShortMnemonic = "ATT06L",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("ATT06L")]
|
||||
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>
|
||||
[Column("ATT10H")]
|
||||
public float? Att10h { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 61,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "ATT10H",
|
||||
/// ShortMnemonic = "ATT10H",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("ATT10H")]
|
||||
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>
|
||||
[Column("ATT10L")]
|
||||
public float? Att10l { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 61,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "ATT10L",
|
||||
/// ShortMnemonic = "ATT10L",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("ATT10L")]
|
||||
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>
|
||||
[Column("Status")]
|
||||
public float? Status { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 61,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "Status",
|
||||
/// ShortMnemonic = "Status",
|
||||
/// Description = "SibReceiver custom",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("Status")]
|
||||
public float? Status { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,300 +1,300 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace AsbCloudDb.Model.WITS
|
||||
{
|
||||
/// <summary>
|
||||
/// Record name: Survey/Directional
|
||||
/// Description: Directional/Survey data
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_7")]
|
||||
public class Record7: RecordBase {
|
||||
/// <summary>
|
||||
/// Record name: Survey/Directional
|
||||
/// Description: Directional/Survey data
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_7")]
|
||||
public class Record7 : RecordBase
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 8,
|
||||
/// LongMnemonic = "DEPTSVYM",
|
||||
/// ShortMnemonic = "DSVM",
|
||||
/// Description = "Depth Svy/reading (meas)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTSVYM")]
|
||||
public float? Deptsvym { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 8,
|
||||
/// LongMnemonic = "DEPTSVYM",
|
||||
/// ShortMnemonic = "DSVM",
|
||||
/// Description = "Depth Svy/reading (meas)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTSVYM")]
|
||||
public float? Deptsvym { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 9,
|
||||
/// LongMnemonic = "DEPTSVYV",
|
||||
/// ShortMnemonic = "DSVV",
|
||||
/// Description = "Depth Svy/reading (vert)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTSVYV")]
|
||||
public float? Deptsvyv { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 9,
|
||||
/// LongMnemonic = "DEPTSVYV",
|
||||
/// ShortMnemonic = "DSVV",
|
||||
/// Description = "Depth Svy/reading (vert)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTSVYV")]
|
||||
public float? Deptsvyv { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 10,
|
||||
/// LongMnemonic = "PASSNUM",
|
||||
/// ShortMnemonic = "PASS",
|
||||
/// Description = "Pass Number",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("PASSNUM")]
|
||||
public short? Passnum { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 10,
|
||||
/// LongMnemonic = "PASSNUM",
|
||||
/// ShortMnemonic = "PASS",
|
||||
/// Description = "Pass Number",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("PASSNUM")]
|
||||
public short? Passnum { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 11,
|
||||
/// 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 = 7,
|
||||
/// ItemId = 11,
|
||||
/// 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 = 7,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "SVYTYPE",
|
||||
/// ShortMnemonic = "STYP",
|
||||
/// Description = "Svy Type",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 8,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("SVYTYPE")]
|
||||
public string? Svytype { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "SVYTYPE",
|
||||
/// ShortMnemonic = "STYP",
|
||||
/// Description = "Svy Type",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 8,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("SVYTYPE")]
|
||||
public string? Svytype { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "SVYINC",
|
||||
/// ShortMnemonic = "SINC",
|
||||
/// Description = "Svy Inclination",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "DEG",
|
||||
/// MetricUnits = "DEG",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SVYINC")]
|
||||
public float? Svyinc { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "SVYINC",
|
||||
/// ShortMnemonic = "SINC",
|
||||
/// Description = "Svy Inclination",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "DEG",
|
||||
/// MetricUnits = "DEG",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SVYINC")]
|
||||
public float? Svyinc { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "SVYAZU",
|
||||
/// ShortMnemonic = "SAZU",
|
||||
/// Description = "Svy Azimuth (uncorrected)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "DEG",
|
||||
/// MetricUnits = "DEG",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SVYAZU")]
|
||||
public float? Svyazu { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "SVYAZU",
|
||||
/// ShortMnemonic = "SAZU",
|
||||
/// Description = "Svy Azimuth (uncorrected)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "DEG",
|
||||
/// MetricUnits = "DEG",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SVYAZU")]
|
||||
public float? Svyazu { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "SVYAZC",
|
||||
/// ShortMnemonic = "SAZC",
|
||||
/// Description = "Svy Azimuth (corrected)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "DEG",
|
||||
/// MetricUnits = "DEG",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SVYAZC")]
|
||||
public float? Svyazc { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "SVYAZC",
|
||||
/// ShortMnemonic = "SAZC",
|
||||
/// Description = "Svy Azimuth (corrected)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "DEG",
|
||||
/// MetricUnits = "DEG",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SVYAZC")]
|
||||
public float? Svyazc { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "SVYMTF",
|
||||
/// ShortMnemonic = "SMTF",
|
||||
/// Description = "Svy Magnetic Toolface",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "DEG",
|
||||
/// MetricUnits = "DEG",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SVYMTF")]
|
||||
public float? Svymtf { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "SVYMTF",
|
||||
/// ShortMnemonic = "SMTF",
|
||||
/// Description = "Svy Magnetic Toolface",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "DEG",
|
||||
/// MetricUnits = "DEG",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SVYMTF")]
|
||||
public float? Svymtf { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "SVYGTF",
|
||||
/// ShortMnemonic = "SGTF",
|
||||
/// Description = "Svy Gravity Toolface",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "DEG",
|
||||
/// MetricUnits = "DEG",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SVYGTF")]
|
||||
public float? Svygtf { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "SVYGTF",
|
||||
/// ShortMnemonic = "SGTF",
|
||||
/// Description = "Svy Gravity Toolface",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "DEG",
|
||||
/// MetricUnits = "DEG",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SVYGTF")]
|
||||
public float? Svygtf { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "SVYNS",
|
||||
/// ShortMnemonic = "SNS",
|
||||
/// Description = "Svy North-South Position",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SVYNS")]
|
||||
public float? Svyns { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "SVYNS",
|
||||
/// ShortMnemonic = "SNS",
|
||||
/// Description = "Svy North-South Position",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SVYNS")]
|
||||
public float? Svyns { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "SVYEW",
|
||||
/// ShortMnemonic = "SEW",
|
||||
/// Description = "Svy East-West Position",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SVYEW")]
|
||||
public float? Svyew { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "SVYEW",
|
||||
/// ShortMnemonic = "SEW",
|
||||
/// Description = "Svy East-West Position",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SVYEW")]
|
||||
public float? Svyew { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 20,
|
||||
/// LongMnemonic = "SVYDLS",
|
||||
/// ShortMnemonic = "SDLS",
|
||||
/// Description = "Svy Dog Leg Severity",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "DGHF",
|
||||
/// MetricUnits = "DGHM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SVYDLS")]
|
||||
public float? Svydls { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 20,
|
||||
/// LongMnemonic = "SVYDLS",
|
||||
/// ShortMnemonic = "SDLS",
|
||||
/// Description = "Svy Dog Leg Severity",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "DGHF",
|
||||
/// MetricUnits = "DGHM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SVYDLS")]
|
||||
public float? Svydls { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 21,
|
||||
/// LongMnemonic = "SVYWALK",
|
||||
/// ShortMnemonic = "SWLK",
|
||||
/// Description = "Svy Rate of Walk",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "DGHF",
|
||||
/// MetricUnits = "DGHM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SVYWALK")]
|
||||
public float? Svywalk { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 21,
|
||||
/// LongMnemonic = "SVYWALK",
|
||||
/// ShortMnemonic = "SWLK",
|
||||
/// Description = "Svy Rate of Walk",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "DGHF",
|
||||
/// MetricUnits = "DGHM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SVYWALK")]
|
||||
public float? Svywalk { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 22,
|
||||
/// LongMnemonic = "SPARE1",
|
||||
/// ShortMnemonic = "SPR1",
|
||||
/// Description = "< SPARE 1>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE1")]
|
||||
public float? Spare1 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 22,
|
||||
/// LongMnemonic = "SPARE1",
|
||||
/// ShortMnemonic = "SPR1",
|
||||
/// Description = "< SPARE 1>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE1")]
|
||||
public float? Spare1 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 23,
|
||||
/// LongMnemonic = "SPARE2",
|
||||
/// ShortMnemonic = "SPR2",
|
||||
/// Description = "< SPARE 2>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE2")]
|
||||
public float? Spare2 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 23,
|
||||
/// LongMnemonic = "SPARE2",
|
||||
/// ShortMnemonic = "SPR2",
|
||||
/// Description = "< SPARE 2>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE2")]
|
||||
public float? Spare2 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 24,
|
||||
/// LongMnemonic = "SPARE3",
|
||||
/// ShortMnemonic = "SPR3",
|
||||
/// Description = "< SPARE 3>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE3")]
|
||||
public float? Spare3 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 24,
|
||||
/// LongMnemonic = "SPARE3",
|
||||
/// ShortMnemonic = "SPR3",
|
||||
/// Description = "< SPARE 3>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE3")]
|
||||
public float? Spare3 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 25,
|
||||
/// LongMnemonic = "SPARE4",
|
||||
/// ShortMnemonic = "SPR4",
|
||||
/// Description = "< SPARE 4>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE4")]
|
||||
public float? Spare4 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 25,
|
||||
/// LongMnemonic = "SPARE4",
|
||||
/// ShortMnemonic = "SPR4",
|
||||
/// Description = "< SPARE 4>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE4")]
|
||||
public float? Spare4 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 26,
|
||||
/// LongMnemonic = "SPARE5",
|
||||
/// ShortMnemonic = "SPR5",
|
||||
/// Description = "< SPARE 5>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE5")]
|
||||
public float? Spare5 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
/// ItemId = 26,
|
||||
/// LongMnemonic = "SPARE5",
|
||||
/// ShortMnemonic = "SPR5",
|
||||
/// Description = "< SPARE 5>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE5")]
|
||||
public float? Spare5 { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,345 +1,345 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace AsbCloudDb.Model.WITS
|
||||
{
|
||||
/// <summary>
|
||||
/// Record name: MWD Mechanical
|
||||
/// Description: MWD Mechanical data
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_9")]
|
||||
public class Record9: RecordBase {
|
||||
/// <summary>
|
||||
/// Record name: MWD Mechanical
|
||||
/// Description: MWD Mechanical data
|
||||
/// Description2:
|
||||
/// </summary>
|
||||
[Table("t_telemetry_wits_9")]
|
||||
public class Record9 : RecordBase
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// 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 = 9,
|
||||
/// 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 = 9,
|
||||
/// 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 = 9,
|
||||
/// 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 = 9,
|
||||
/// ItemId = 10,
|
||||
/// LongMnemonic = "DEPTBITM",
|
||||
/// ShortMnemonic = "DBTM",
|
||||
/// Description = "Depth Bit (meas)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTBITM")]
|
||||
public float? Deptbitm { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 10,
|
||||
/// LongMnemonic = "DEPTBITM",
|
||||
/// ShortMnemonic = "DBTM",
|
||||
/// Description = "Depth Bit (meas)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTBITM")]
|
||||
public float? Deptbitm { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 11,
|
||||
/// LongMnemonic = "DEPTBITV",
|
||||
/// ShortMnemonic = "DBTV",
|
||||
/// Description = "Depth Bit (vert)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTBITV")]
|
||||
public float? Deptbitv { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 11,
|
||||
/// LongMnemonic = "DEPTBITV",
|
||||
/// ShortMnemonic = "DBTV",
|
||||
/// Description = "Depth Bit (vert)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "F",
|
||||
/// MetricUnits = "M",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("DEPTBITV")]
|
||||
public float? Deptbitv { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "PASSNUM",
|
||||
/// ShortMnemonic = "PASS",
|
||||
/// Description = "Pass Number",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("PASSNUM")]
|
||||
public short? Passnum { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 12,
|
||||
/// LongMnemonic = "PASSNUM",
|
||||
/// ShortMnemonic = "PASS",
|
||||
/// Description = "Pass Number",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("PASSNUM")]
|
||||
public short? Passnum { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "MBHPANN",
|
||||
/// ShortMnemonic = "MBPA",
|
||||
/// Description = "Bottom-hole annulus press",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PSI",
|
||||
/// MetricUnits = "KPA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MBHPANN")]
|
||||
public float? Mbhpann { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 13,
|
||||
/// LongMnemonic = "MBHPANN",
|
||||
/// ShortMnemonic = "MBPA",
|
||||
/// Description = "Bottom-hole annulus press",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PSI",
|
||||
/// MetricUnits = "KPA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MBHPANN")]
|
||||
public float? Mbhpann { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "MBHPINT",
|
||||
/// ShortMnemonic = "MBPI",
|
||||
/// Description = "Bottom-hole internal press",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PSI",
|
||||
/// MetricUnits = "KPA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MBHPINT")]
|
||||
public float? Mbhpint { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 14,
|
||||
/// LongMnemonic = "MBHPINT",
|
||||
/// ShortMnemonic = "MBPI",
|
||||
/// Description = "Bottom-hole internal press",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "PSI",
|
||||
/// MetricUnits = "KPA",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MBHPINT")]
|
||||
public float? Mbhpint { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "MWOBA",
|
||||
/// ShortMnemonic = "MWBA",
|
||||
/// Description = "Downhole Wt-on-Bit (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KLB",
|
||||
/// MetricUnits = "KDN",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MWOBA")]
|
||||
public float? Mwoba { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 15,
|
||||
/// LongMnemonic = "MWOBA",
|
||||
/// ShortMnemonic = "MWBA",
|
||||
/// Description = "Downhole Wt-on-Bit (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KLB",
|
||||
/// MetricUnits = "KDN",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MWOBA")]
|
||||
public float? Mwoba { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "MWOBX",
|
||||
/// ShortMnemonic = "MWBX",
|
||||
/// Description = "Downhole Wt-on-Bit (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KLB",
|
||||
/// MetricUnits = "KDN",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MWOBX")]
|
||||
public float? Mwobx { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 16,
|
||||
/// LongMnemonic = "MWOBX",
|
||||
/// ShortMnemonic = "MWBX",
|
||||
/// Description = "Downhole Wt-on-Bit (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KLB",
|
||||
/// MetricUnits = "KDN",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MWOBX")]
|
||||
public float? Mwobx { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "MTORQA",
|
||||
/// ShortMnemonic = "MTQA",
|
||||
/// Description = "Downhole Torque (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KFLB",
|
||||
/// MetricUnits = "KNM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MTORQA")]
|
||||
public float? Mtorqa { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 17,
|
||||
/// LongMnemonic = "MTORQA",
|
||||
/// ShortMnemonic = "MTQA",
|
||||
/// Description = "Downhole Torque (avg)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KFLB",
|
||||
/// MetricUnits = "KNM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MTORQA")]
|
||||
public float? Mtorqa { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "MTORQX",
|
||||
/// ShortMnemonic = "MTQX",
|
||||
/// Description = "Downhole Torque (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KFLB",
|
||||
/// MetricUnits = "KNM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MTORQX")]
|
||||
public float? Mtorqx { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 18,
|
||||
/// LongMnemonic = "MTORQX",
|
||||
/// ShortMnemonic = "MTQX",
|
||||
/// Description = "Downhole Torque (max)",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "KFLB",
|
||||
/// MetricUnits = "KNM",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("MTORQX")]
|
||||
public float? Mtorqx { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "MMMRPM",
|
||||
/// ShortMnemonic = "MMRP",
|
||||
/// Description = "Downhole Motor RPM",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "RPM",
|
||||
/// MetricUnits = "RPM",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("MMMRPM")]
|
||||
public short? Mmmrpm { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 19,
|
||||
/// LongMnemonic = "MMMRPM",
|
||||
/// ShortMnemonic = "MMRP",
|
||||
/// Description = "Downhole Motor RPM",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "RPM",
|
||||
/// MetricUnits = "RPM",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("MMMRPM")]
|
||||
public short? Mmmrpm { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 20,
|
||||
/// LongMnemonic = "MALTVOLT",
|
||||
/// ShortMnemonic = "MALT",
|
||||
/// Description = "MWD Tool Alternator Voltage",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "V",
|
||||
/// MetricUnits = "V",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("MALTVOLT")]
|
||||
public short? Maltvolt { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 20,
|
||||
/// LongMnemonic = "MALTVOLT",
|
||||
/// ShortMnemonic = "MALT",
|
||||
/// Description = "MWD Tool Alternator Voltage",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "V",
|
||||
/// MetricUnits = "V",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("MALTVOLT")]
|
||||
public short? Maltvolt { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 21,
|
||||
/// LongMnemonic = "SPARE1",
|
||||
/// ShortMnemonic = "SPR1",
|
||||
/// Description = "< SPARE 1>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE1")]
|
||||
public float? Spare1 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 21,
|
||||
/// LongMnemonic = "SPARE1",
|
||||
/// ShortMnemonic = "SPR1",
|
||||
/// Description = "< SPARE 1>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE1")]
|
||||
public float? Spare1 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 22,
|
||||
/// LongMnemonic = "SPARE2",
|
||||
/// ShortMnemonic = "SPR2",
|
||||
/// Description = "< SPARE 2>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE2")]
|
||||
public float? Spare2 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 22,
|
||||
/// LongMnemonic = "SPARE2",
|
||||
/// ShortMnemonic = "SPR2",
|
||||
/// Description = "< SPARE 2>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE2")]
|
||||
public float? Spare2 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 23,
|
||||
/// LongMnemonic = "SPARE3",
|
||||
/// ShortMnemonic = "SPR3",
|
||||
/// Description = "< SPARE 3>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE3")]
|
||||
public float? Spare3 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 23,
|
||||
/// LongMnemonic = "SPARE3",
|
||||
/// ShortMnemonic = "SPR3",
|
||||
/// Description = "< SPARE 3>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE3")]
|
||||
public float? Spare3 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 24,
|
||||
/// LongMnemonic = "SPARE4",
|
||||
/// ShortMnemonic = "SPR4",
|
||||
/// Description = "< SPARE 4>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE4")]
|
||||
public float? Spare4 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 24,
|
||||
/// LongMnemonic = "SPARE4",
|
||||
/// ShortMnemonic = "SPR4",
|
||||
/// Description = "< SPARE 4>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE4")]
|
||||
public float? Spare4 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 25,
|
||||
/// LongMnemonic = "SPARE5",
|
||||
/// ShortMnemonic = "SPR5",
|
||||
/// Description = "< SPARE 5>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE5")]
|
||||
public float? Spare5 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 25,
|
||||
/// LongMnemonic = "SPARE5",
|
||||
/// ShortMnemonic = "SPR5",
|
||||
/// Description = "< SPARE 5>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "---",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE5")]
|
||||
public float? Spare5 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 26,
|
||||
/// LongMnemonic = "SPARE6",
|
||||
/// ShortMnemonic = "SPR6",
|
||||
/// Description = "< SPARE 6>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE6")]
|
||||
public float? Spare6 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 26,
|
||||
/// LongMnemonic = "SPARE6",
|
||||
/// ShortMnemonic = "SPR6",
|
||||
/// Description = "< SPARE 6>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE6")]
|
||||
public float? Spare6 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 27,
|
||||
/// LongMnemonic = "SPARE7",
|
||||
/// ShortMnemonic = "SPR7",
|
||||
/// Description = "< SPARE 7>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE7")]
|
||||
public float? Spare7 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 27,
|
||||
/// LongMnemonic = "SPARE7",
|
||||
/// ShortMnemonic = "SPR7",
|
||||
/// Description = "< SPARE 7>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE7")]
|
||||
public float? Spare7 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 28,
|
||||
/// LongMnemonic = "SPARE8",
|
||||
/// ShortMnemonic = "SPR8",
|
||||
/// Description = "< SPARE 8>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE8")]
|
||||
public float? Spare8 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 28,
|
||||
/// LongMnemonic = "SPARE8",
|
||||
/// ShortMnemonic = "SPR8",
|
||||
/// Description = "< SPARE 8>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE8")]
|
||||
public float? Spare8 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 29,
|
||||
/// LongMnemonic = "SPARE9",
|
||||
/// ShortMnemonic = "SPR9",
|
||||
/// Description = "< SPARE 9>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE9")]
|
||||
public float? Spare9 { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 9,
|
||||
/// ItemId = 29,
|
||||
/// LongMnemonic = "SPARE9",
|
||||
/// ShortMnemonic = "SPR9",
|
||||
/// Description = "< SPARE 9>",
|
||||
/// Description2 = "",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "F"
|
||||
/// </summary>
|
||||
[Column("SPARE9")]
|
||||
public float? Spare9 { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,127 +1,126 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace AsbCloudDb.Model.WITS
|
||||
{
|
||||
/// <summary>
|
||||
/// This is base class for all WITS-0 records
|
||||
/// </summary>
|
||||
public abstract class RecordBase: ITelemetryData
|
||||
{
|
||||
[Column("id_telemetry")]
|
||||
public int IdTelemetry { get; set; }
|
||||
/// <summary>
|
||||
/// This is base class for all WITS-0 records
|
||||
/// </summary>
|
||||
public abstract class RecordBase : ITelemetryData
|
||||
{
|
||||
[Column("id_telemetry")]
|
||||
public int IdTelemetry { get; set; }
|
||||
|
||||
|
||||
[Column("date", TypeName = "timestamp with time zone")]
|
||||
public DateTimeOffset DateTime { get; set; }
|
||||
[Column("date", TypeName = "timestamp with time zone")]
|
||||
public DateTimeOffset DateTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 1,
|
||||
/// ItemId = 1,
|
||||
/// LongMnemonic = "WELLID",
|
||||
/// ShortMnemonic = "WID",
|
||||
/// Description = "Well Identifier",
|
||||
/// Description2 = "Number/name assigned to the well by the operator for identification purposes. This item is common to all records. This includes a four-character code identifying the SENDER.",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 16,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("WELLID")]
|
||||
public string? Wellid { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 1,
|
||||
/// ItemId = 1,
|
||||
/// LongMnemonic = "WELLID",
|
||||
/// ShortMnemonic = "WID",
|
||||
/// Description = "Well Identifier",
|
||||
/// Description2 = "Number/name assigned to the well by the operator for identification purposes. This item is common to all records. This includes a four-character code identifying the SENDER.",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 16,
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
[Column("WELLID")]
|
||||
public string? Wellid { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 1,
|
||||
/// ItemId = 2,
|
||||
/// LongMnemonic = "STKNUM",
|
||||
/// ShortMnemonic = "SKNO",
|
||||
/// Description = "Sidetrack/Hole Sect No.",
|
||||
/// Description2 = "Measured depth of the hole at the time the record is generated.",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("STKNUM")]
|
||||
public short? Stknum { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 1,
|
||||
/// ItemId = 2,
|
||||
/// LongMnemonic = "STKNUM",
|
||||
/// ShortMnemonic = "SKNO",
|
||||
/// Description = "Sidetrack/Hole Sect No.",
|
||||
/// Description2 = "Measured depth of the hole at the time the record is generated.",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("STKNUM")]
|
||||
public short? Stknum { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 1,
|
||||
/// ItemId = 3,
|
||||
/// LongMnemonic = "RECID",
|
||||
/// ShortMnemonic = "RID",
|
||||
/// Description = "Record Identifier",
|
||||
/// Description2 = "Number of the sidetrack being drilled at the time the computer generated the record. Prior to having a sidetrack, this number is always 0. The sidetrack number indexes at the time drilling new formation commences (not while drilling the cement plug). This item is common to all records.",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("RECID")]
|
||||
public short? Recid { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 1,
|
||||
/// ItemId = 3,
|
||||
/// LongMnemonic = "RECID",
|
||||
/// ShortMnemonic = "RID",
|
||||
/// Description = "Record Identifier",
|
||||
/// Description2 = "Number of the sidetrack being drilled at the time the computer generated the record. Prior to having a sidetrack, this number is always 0. The sidetrack number indexes at the time drilling new formation commences (not while drilling the cement plug). This item is common to all records.",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("RECID")]
|
||||
public short? Recid { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 1,
|
||||
/// ItemId = 4,
|
||||
/// LongMnemonic = "SEQID",
|
||||
/// ShortMnemonic = "SQID",
|
||||
/// Description = "Sequence Identifier",
|
||||
/// Description2 = "Logical data record type identifier. This item is common to all records and, for current Pre-Defined Records, contains a value between 1 and 25, according to the record type. Types 26 through 49 inclusive are reserved for future expansion of the Pre-Defined records. Types 50 through 80 inclusive are open for Custom user definition. NOTE that the Logical Record Type for a record is this number plus 150, thus WITS Record 1 is Logical Record Type 151, WITS Record 2 is Logical Record Type 152, etc.",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("SEQID")]
|
||||
public int? Seqid { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 1,
|
||||
/// ItemId = 4,
|
||||
/// LongMnemonic = "SEQID",
|
||||
/// ShortMnemonic = "SQID",
|
||||
/// Description = "Sequence Identifier",
|
||||
/// Description2 = "Logical data record type identifier. This item is common to all records and, for current Pre-Defined Records, contains a value between 1 and 25, according to the record type. Types 26 through 49 inclusive are reserved for future expansion of the Pre-Defined records. Types 50 through 80 inclusive are open for Custom user definition. NOTE that the Logical Record Type for a record is this number plus 150, thus WITS Record 1 is Logical Record Type 151, WITS Record 2 is Logical Record Type 152, etc.",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("SEQID")]
|
||||
public int? Seqid { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 1,
|
||||
/// ItemId = 5,
|
||||
/// LongMnemonic = "DATE",
|
||||
/// ShortMnemonic = "DATE",
|
||||
/// Description = "Date",
|
||||
/// Description2 = "Indicates the number of times this record has been generated (it is not reset to zero for a sidetrack). The computer should automatically increase the number by one each time it creates a new record. This item is common to all records. The sequence identifier in each individual record type keeps track of the count for that particular record only. Thus there is a sequence identifier for each record type used.",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("DATE")]
|
||||
public int? Date { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 1,
|
||||
/// ItemId = 5,
|
||||
/// LongMnemonic = "DATE",
|
||||
/// ShortMnemonic = "DATE",
|
||||
/// Description = "Date",
|
||||
/// Description2 = "Indicates the number of times this record has been generated (it is not reset to zero for a sidetrack). The computer should automatically increase the number by one each time it creates a new record. This item is common to all records. The sequence identifier in each individual record type keeps track of the count for that particular record only. Thus there is a sequence identifier for each record type used.",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("DATE")]
|
||||
public int? Date { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 1,
|
||||
/// ItemId = 6,
|
||||
/// LongMnemonic = "TIME",
|
||||
/// ShortMnemonic = "TIME",
|
||||
/// Description = "Time",
|
||||
/// Description2 = "Indicates the date the computer generated this record. The date is reported as a 6 digit integer in a YYMMDD type format. e.g. 910404 would represent April 4, 1991. It is common to all records. Note that, like Time below, Universal Coordinated Time (Greenwich Mean Time) is used as the common reference. Note also that though this number should never decrease, there is no guarantee of this fact.",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("TIME")]
|
||||
public int? Time { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 1,
|
||||
/// ItemId = 6,
|
||||
/// LongMnemonic = "TIME",
|
||||
/// ShortMnemonic = "TIME",
|
||||
/// Description = "Time",
|
||||
/// Description2 = "Indicates the date the computer generated this record. The date is reported as a 6 digit integer in a YYMMDD type format. e.g. 910404 would represent April 4, 1991. It is common to all records. Note that, like Time below, Universal Coordinated Time (Greenwich Mean Time) is used as the common reference. Note also that though this number should never decrease, there is no guarantee of this fact.",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 4,
|
||||
/// ValueType = "L"
|
||||
/// </summary>
|
||||
[Column("TIME")]
|
||||
public int? Time { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 1,
|
||||
/// ItemId = 7,
|
||||
/// LongMnemonic = "ACTCOD",
|
||||
/// ShortMnemonic = "ACTC",
|
||||
/// Description = "Activity Code",
|
||||
/// Description2 = "Indicates the time of day (24 hour clock), when the computer generated the record, eg. 225015 would represent 10:50:15 pm. This item is common to all records. Note that, like Date above, Universal Coordinated Time (Greenwich Mean Time) is used as the common reference.",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("ACTCOD")]
|
||||
public short? Actcod { get; set; }
|
||||
/// <summary>
|
||||
/// RecordId = 1,
|
||||
/// ItemId = 7,
|
||||
/// LongMnemonic = "ACTCOD",
|
||||
/// ShortMnemonic = "ACTC",
|
||||
/// Description = "Activity Code",
|
||||
/// Description2 = "Indicates the time of day (24 hour clock), when the computer generated the record, eg. 225015 would represent 10:50:15 pm. This item is common to all records. Note that, like Date above, Universal Coordinated Time (Greenwich Mean Time) is used as the common reference.",
|
||||
/// FPSUnits = "----",
|
||||
/// MetricUnits = "----",
|
||||
/// Length = 2,
|
||||
/// ValueType = "S"
|
||||
/// </summary>
|
||||
[Column("ACTCOD")]
|
||||
public short? Actcod { get; set; }
|
||||
|
||||
[ForeignKey(nameof(IdTelemetry))]
|
||||
public virtual Telemetry Telemetry { get; set; }
|
||||
}
|
||||
[ForeignKey(nameof(IdTelemetry))]
|
||||
public virtual Telemetry Telemetry { get; set; }
|
||||
}
|
||||
}
|
||||
|
@ -1,5 +1,4 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
#nullable disable
|
||||
|
@ -15,7 +15,7 @@ namespace AsbCloudInfrastructure
|
||||
DateTimeKind.Unspecified => DateTime.SpecifyKind(date.AddHours(-remoteTimezoneOffsetHours), DateTimeKind.Utc),
|
||||
_ => date,
|
||||
};
|
||||
return new DateTimeOffset( dateUtc);
|
||||
return new DateTimeOffset(dateUtc);
|
||||
}
|
||||
|
||||
public static DateTime ToRemoteDateTime(this DateTimeOffset date, double remoteTimezoneOffsetHours)
|
||||
|
@ -1,20 +1,20 @@
|
||||
using AsbCloudApp.Data;
|
||||
using AsbCloudApp.Data.SAUB;
|
||||
using AsbCloudApp.Services;
|
||||
using AsbCloudDb.Model;
|
||||
using AsbCloudInfrastructure.Services;
|
||||
using AsbCloudInfrastructure.Services.Analysis;
|
||||
using AsbCloudInfrastructure.Services.Cache;
|
||||
using AsbCloudInfrastructure.Services.DrillingProgram;
|
||||
using AsbCloudInfrastructure.Services.SAUB;
|
||||
using AsbCloudInfrastructure.Services.WellOperationService;
|
||||
using AsbCloudInfrastructure.Validators;
|
||||
using FluentValidation.AspNetCore;
|
||||
using Mapster;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using System;
|
||||
using FluentValidation;
|
||||
using FluentValidation.AspNetCore;
|
||||
using AsbCloudInfrastructure.Services.DrillingProgram;
|
||||
using AsbCloudApp.Data.SAUB;
|
||||
|
||||
namespace AsbCloudInfrastructure
|
||||
{
|
||||
|
@ -1,10 +1,10 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using AsbCloudApp.Exceptions;
|
||||
using AsbCloudApp.Exceptions;
|
||||
using AsbCloudDb.Model;
|
||||
using AsbSaubReport.Model;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
namespace AsbCloudInfrastructure
|
||||
{
|
||||
@ -97,7 +97,8 @@ namespace AsbCloudInfrastructure
|
||||
&& d.DateTime >= beginUtc
|
||||
&& d.DateTime <= endUtc)
|
||||
.OrderBy(d => d.DateTime)
|
||||
.Select(d => new DataSaubReport {
|
||||
.Select(d => new DataSaubReport
|
||||
{
|
||||
Date = d.DateTime.DateTime.AddHours(timezoneOffset),
|
||||
Mode = d.Mode,
|
||||
WellDepth = d.WellDepth,
|
||||
|
@ -1,6 +1,4 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace AsbCloudInfrastructure.Services.Analysis
|
||||
{
|
||||
@ -33,7 +31,7 @@ namespace AsbCloudInfrastructure.Services.Analysis
|
||||
(xSum * xySum - x2Sum * ySum) /
|
||||
(xSum * xSum - count * x2Sum);
|
||||
|
||||
public bool IsYNotChanges(double upperBound = 0d, double lowerBound = 0d) =>
|
||||
public bool IsYNotChanges(double upperBound = 0d, double lowerBound = 0d) =>
|
||||
A < upperBound && A > lowerBound;
|
||||
|
||||
public bool IsYIncreases(double bound = 0d) =>
|
||||
|
@ -1,13 +1,14 @@
|
||||
using System;
|
||||
using AsbCloudApp.Services;
|
||||
using AsbCloudDb.Model;
|
||||
using AsbCloudInfrastructure.Services.Cache;
|
||||
using AsbCloudInfrastructure.Services.SAUB;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using Microsoft.Extensions.Hosting;
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using System.Diagnostics;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.Extensions.Hosting;
|
||||
using AsbCloudInfrastructure.Services.Cache;
|
||||
using AsbCloudApp.Services;
|
||||
using AsbCloudDb.Model;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
|
||||
namespace AsbCloudInfrastructure.Services.Analysis
|
||||
{
|
||||
@ -34,7 +35,7 @@ namespace AsbCloudInfrastructure.Services.Analysis
|
||||
|
||||
while (!token.IsCancellationRequested)
|
||||
{
|
||||
if(DateTime.Now > timeToStartAnalysis)
|
||||
if (DateTime.Now > timeToStartAnalysis)
|
||||
{
|
||||
timeToStartAnalysis = DateTime.Now + period;
|
||||
try
|
||||
|
@ -76,13 +76,14 @@ namespace AsbCloudInfrastructure.Services.Analysis
|
||||
var drillingPeriodsInfo = await db.TelemetryDataSaub
|
||||
.Where(t => t.IdTelemetry == telemetryId)
|
||||
.GroupBy(t => Math.Floor((((t.DateTime.DayOfYear * 24 + t.DateTime.Hour) * 60 + t.DateTime.Minute) * 60 + t.DateTime.Second + timezone.Hours - shiftStartSec) / intervalSeconds))
|
||||
.Select(g => new {
|
||||
.Select(g => new
|
||||
{
|
||||
WellDepthMin = g.Min(t => t.WellDepth),
|
||||
WellDepthMax = g.Max(t => t.WellDepth),
|
||||
DateMin = g.Min(t => t.DateTime),
|
||||
DateMax = g.Max(t => t.DateTime),
|
||||
})
|
||||
.OrderBy(g=>g.DateMin)
|
||||
.OrderBy(g => g.DateMin)
|
||||
.ToListAsync(token);
|
||||
|
||||
var wellDepthToIntervalData = drillingPeriodsInfo.Select(d => new WellDepthToIntervalDto
|
||||
@ -335,15 +336,15 @@ namespace AsbCloudInfrastructure.Services.Analysis
|
||||
private async Task<DateTime> GetLastAnalysisDateAsync(int idTelemetry, CancellationToken token = default)
|
||||
{
|
||||
var lastAnalysisInDb = await (from analysis in db.TelemetryAnalysis
|
||||
where analysis.IdTelemetry == idTelemetry
|
||||
orderby analysis.UnixDate
|
||||
select analysis)
|
||||
where analysis.IdTelemetry == idTelemetry
|
||||
orderby analysis.UnixDate
|
||||
select analysis)
|
||||
.LastOrDefaultAsync(token)
|
||||
.ConfigureAwait(false);
|
||||
|
||||
DateTime lastAnalysisDate = new DateTime(0, DateTimeKind.Utc);
|
||||
|
||||
if(lastAnalysisInDb is not null)
|
||||
if (lastAnalysisInDb is not null)
|
||||
lastAnalysisDate = DateTime.UnixEpoch.AddSeconds(lastAnalysisInDb.DurationSec + lastAnalysisInDb.UnixDate);
|
||||
|
||||
return lastAnalysisDate;
|
||||
@ -363,7 +364,8 @@ namespace AsbCloudInfrastructure.Services.Analysis
|
||||
)
|
||||
.OrderBy(d => d.DateTime)
|
||||
.Take(countOfRecordsForInterpolation)
|
||||
.Select(d => new DataSaubAnalyse {
|
||||
.Select(d => new DataSaubAnalyse
|
||||
{
|
||||
IdTelemetry = d.IdTelemetry,
|
||||
Date = d.DateTime,
|
||||
BitDepth = d.BitDepth ?? 0,
|
||||
@ -507,7 +509,7 @@ namespace AsbCloudInfrastructure.Services.Analysis
|
||||
OperationStartDepth = null,
|
||||
OperationEndDepth = null,
|
||||
IsWellDepthDecreasing = wellDepthLine.IsYDecreases(-0.0001),
|
||||
IsWellDepthIncreasing = wellDepthLine.IsYIncreases( 0.0001),
|
||||
IsWellDepthIncreasing = wellDepthLine.IsYIncreases(0.0001),
|
||||
IsBitPositionDecreasing = bitPositionLine.IsYDecreases(-0.0001),
|
||||
IsBitPositionIncreasing = bitPositionLine.IsYIncreases(0.0001),
|
||||
IsBitPositionLt20 = bitPositionLine.IsAverageYLessThanBound(20),
|
||||
|
@ -1,18 +1,18 @@
|
||||
using AsbCloudApp.Data;
|
||||
using AsbCloudApp.Services;
|
||||
using AsbCloudDb.Model;
|
||||
using Mapster;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.IdentityModel.Tokens;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IdentityModel.Tokens.Jwt;
|
||||
using System.Linq;
|
||||
using System.Security.Claims;
|
||||
using System.Security.Cryptography;
|
||||
using System.Text;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using Mapster;
|
||||
using System.IdentityModel.Tokens.Jwt;
|
||||
|
||||
namespace AsbCloudInfrastructure.Services
|
||||
{
|
||||
@ -23,7 +23,7 @@ namespace AsbCloudInfrastructure.Services
|
||||
|
||||
public const string issuer = "a";
|
||||
public const string audience = "a";
|
||||
public static readonly SymmetricSecurityKey securityKey = new (Encoding.ASCII.GetBytes("супер секретный ключ для шифрования"));
|
||||
public static readonly SymmetricSecurityKey securityKey = new(Encoding.ASCII.GetBytes("супер секретный ключ для шифрования"));
|
||||
private const string algorithms = SecurityAlgorithms.HmacSha256;
|
||||
|
||||
private static readonly TimeSpan expiresTimespan = TimeSpan.FromDays(365.25);
|
||||
@ -84,7 +84,7 @@ namespace AsbCloudInfrastructure.Services
|
||||
|
||||
var user = db.Users.FirstOrDefault(u => u.Login == userDto.Login);
|
||||
|
||||
if(user is not null)
|
||||
if (user is not null)
|
||||
return -6;
|
||||
|
||||
var salt = GenerateSalt();
|
||||
|
@ -1,5 +1,4 @@
|
||||
using AsbCloudApp.Data;
|
||||
using AsbCloudApp.Services;
|
||||
using AsbCloudApp.Services;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
@ -1,9 +1,8 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System.Linq;
|
||||
using System;
|
||||
using System.Collections.Concurrent;
|
||||
using System.Collections.Generic;
|
||||
using System;
|
||||
using AsbCloudApp;
|
||||
using System.Linq;
|
||||
|
||||
namespace AsbCloudInfrastructure.Services.Cache
|
||||
{
|
||||
|
@ -1,11 +1,11 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics;
|
||||
using System.Linq;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using System.Collections;
|
||||
using System.Diagnostics;
|
||||
|
||||
namespace AsbCloudInfrastructure.Services.Cache
|
||||
{
|
||||
@ -418,7 +418,7 @@ namespace AsbCloudInfrastructure.Services.Cache
|
||||
|
||||
public Task<IEnumerable<TEntity>> InsertAsync(IEnumerable<TEntity> newEntities, CancellationToken token = default)
|
||||
{
|
||||
if(newEntities is null)
|
||||
if (newEntities is null)
|
||||
return null;
|
||||
var count = newEntities.Count();
|
||||
if (count == 0)
|
||||
|
@ -1,6 +1,5 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace AsbCloudInfrastructure.Services.Cache
|
||||
{
|
||||
@ -11,7 +10,7 @@ namespace AsbCloudInfrastructure.Services.Cache
|
||||
|
||||
//public ISet<string> Includes { get; set; } //TODO: this prop change should update entities
|
||||
public IEnumerable Entities { get; set; }
|
||||
public TimeSpan ObsolesenceTime { get; set; } = TimeSpan.FromMinutes(15);
|
||||
public TimeSpan ObsolesenceTime { get; set; } = TimeSpan.FromMinutes(15);
|
||||
public bool IsObsolete => (DateTime.Now - LastResreshDate > ObsolesenceTime);
|
||||
|
||||
}
|
||||
|
@ -48,10 +48,10 @@ namespace AsbCloudInfrastructure.Services
|
||||
.Include(w => w.WellType)
|
||||
.Include(w => w.Cluster)
|
||||
.ThenInclude(c => c.Deposit)
|
||||
from p in db.DrillParams
|
||||
where well.RelationCompaniesWells.Any(r => r.IdCompany == idCompany) &&
|
||||
well.Id == p.IdWell
|
||||
select well).ToListAsync(token)
|
||||
from p in db.DrillParams
|
||||
where well.RelationCompaniesWells.Any(r => r.IdCompany == idCompany) &&
|
||||
well.Id == p.IdWell
|
||||
select well).ToListAsync(token)
|
||||
.ConfigureAwait(false);
|
||||
|
||||
var gDepositEntities = GroupWells(wellEntities);
|
||||
@ -131,7 +131,7 @@ namespace AsbCloudInfrastructure.Services
|
||||
.Where(w => w.RelationCompaniesWells.Any(c => c.IdCompany == idCompany));
|
||||
}
|
||||
|
||||
private IEnumerable<DepositDto> CreateDepositDto(IEnumerable<IGrouping<Deposit,IGrouping<Cluster, Well>>>gDepositEntities)
|
||||
private IEnumerable<DepositDto> CreateDepositDto(IEnumerable<IGrouping<Deposit, IGrouping<Cluster, Well>>> gDepositEntities)
|
||||
{
|
||||
return gDepositEntities.Select(gDeposit => new DepositDto
|
||||
{
|
||||
@ -145,7 +145,8 @@ namespace AsbCloudInfrastructure.Services
|
||||
Caption = gCluster.Key.Caption,
|
||||
Latitude = gCluster.Key.Latitude,
|
||||
Longitude = gCluster.Key.Longitude,
|
||||
Wells = gCluster.Select(well => {
|
||||
Wells = gCluster.Select(well =>
|
||||
{
|
||||
var dto = well.Adapt<WellDto>();
|
||||
dto.WellType = well.WellType?.Caption;
|
||||
dto.LastTelemetryDate = wellService.GetLastTelemetryDate(well.Id).DateTime;
|
||||
|
@ -1,4 +1,3 @@
|
||||
using AsbCloudApp;
|
||||
using AsbCloudApp.Services;
|
||||
using AsbCloudDb.Model;
|
||||
using AsbCloudInfrastructure.Services.Cache;
|
||||
@ -21,9 +20,11 @@ namespace AsbCloudInfrastructure.Services
|
||||
|
||||
public ISet<string> Includes { get; } = new SortedSet<string>();
|
||||
|
||||
protected CacheTable<TModel> Cache {
|
||||
get {
|
||||
if(cache is null)
|
||||
protected CacheTable<TModel> Cache
|
||||
{
|
||||
get
|
||||
{
|
||||
if (cache is null)
|
||||
cache = cacheDb.GetCachedTable<TModel>((AsbCloudDbContext)db, Includes);
|
||||
return cache;
|
||||
}
|
||||
@ -40,7 +41,7 @@ namespace AsbCloudInfrastructure.Services
|
||||
var entity = Convert(newItem);
|
||||
var insertedEntity = await Cache.InsertAsync(entity, token)
|
||||
.ConfigureAwait(false);
|
||||
return insertedEntity?.Id??-1;
|
||||
return insertedEntity?.Id ?? -1;
|
||||
}
|
||||
|
||||
public virtual async Task<int> InsertRangeAsync(IEnumerable<TDto> dtos, CancellationToken token)
|
||||
@ -48,7 +49,7 @@ namespace AsbCloudInfrastructure.Services
|
||||
var entities = dtos.Select(Convert);
|
||||
var insertedEntities = await Cache.InsertAsync(entities, token)
|
||||
.ConfigureAwait(false);
|
||||
return insertedEntities?.Count()??0;
|
||||
return insertedEntities?.Count() ?? 0;
|
||||
}
|
||||
|
||||
public virtual async Task<IEnumerable<TDto>> GetAllAsync(CancellationToken token)
|
||||
@ -74,7 +75,7 @@ namespace AsbCloudInfrastructure.Services
|
||||
{
|
||||
if (dto.Id != id)
|
||||
{
|
||||
var exist = await Cache.ContainsAsync(i=>i.Id == dto.Id, token)
|
||||
var exist = await Cache.ContainsAsync(i => i.Id == dto.Id, token)
|
||||
.ConfigureAwait(false);
|
||||
|
||||
if (exist)
|
||||
|
@ -1,5 +1,4 @@
|
||||
using AsbCloudApp;
|
||||
using AsbCloudApp.Data;
|
||||
using AsbCloudApp.Data;
|
||||
using AsbCloudApp.Services;
|
||||
using AsbCloudDb.Model;
|
||||
using Mapster;
|
||||
@ -93,7 +92,8 @@ namespace AsbCloudInfrastructure.Services
|
||||
|
||||
public virtual Task<int> InsertRangeAsync(IEnumerable<TDto> items, CancellationToken token = default)
|
||||
{
|
||||
var entities = items.Select(i => {
|
||||
var entities = items.Select(i =>
|
||||
{
|
||||
var entity = Convert(i);
|
||||
entity.Id = 0;
|
||||
return entity;
|
||||
|
@ -1,13 +1,13 @@
|
||||
using AsbCloudApp.Data;
|
||||
using AsbCloudApp.Services;
|
||||
using AsbCloudDb.Model;
|
||||
using Mapster;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using AsbCloudApp.Data;
|
||||
using AsbCloudApp.Services;
|
||||
using AsbCloudDb.Model;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Mapster;
|
||||
|
||||
namespace AsbCloudInfrastructure.Services
|
||||
{
|
||||
@ -30,14 +30,15 @@ namespace AsbCloudInfrastructure.Services
|
||||
var timezone = wellService.GetTimezone(idWell);
|
||||
var updateFromUtc = updateFrom.ToUtcDateTimeOffset(timezone.Hours);
|
||||
var entities = await (from p in db.DrillFlowChart
|
||||
where p.IdWell == idWell &&
|
||||
p.LastUpdate > updateFromUtc
|
||||
orderby p.DepthStart, p.Id
|
||||
select p)
|
||||
where p.IdWell == idWell &&
|
||||
p.LastUpdate > updateFromUtc
|
||||
orderby p.DepthStart, p.Id
|
||||
select p)
|
||||
.ToListAsync(token)
|
||||
.ConfigureAwait(false);
|
||||
|
||||
var dtos = entities.Select(entity => {
|
||||
var dtos = entities.Select(entity =>
|
||||
{
|
||||
var dto = entity.Adapt<DrillFlowChartDto>();
|
||||
dto.LastUpdate = entity.LastUpdate.ToRemoteDateTime(timezone.Hours);
|
||||
return dto;
|
||||
|
@ -1,12 +1,12 @@
|
||||
using System.Collections.Generic;
|
||||
using AsbCloudApp.Data;
|
||||
using AsbCloudApp.Services;
|
||||
using AsbCloudDb.Model;
|
||||
using Mapster;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using AsbCloudApp.Data;
|
||||
using AsbCloudApp.Services;
|
||||
using AsbCloudDb.Model;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Mapster;
|
||||
|
||||
namespace AsbCloudInfrastructure.Services
|
||||
{
|
||||
@ -41,16 +41,16 @@ namespace AsbCloudInfrastructure.Services
|
||||
DepthStart = startDepth,
|
||||
DepthEnd = endDepth,
|
||||
IdWellSectionType = 0,
|
||||
AxialLoadMin = g.Min(t=> t.AxialLoad) ?? double.NaN,
|
||||
AxialLoadMin = g.Min(t => t.AxialLoad) ?? double.NaN,
|
||||
AxialLoadAvg = g.Average(t => t.AxialLoad) ?? double.NaN,
|
||||
AxialLoadMax = g.Max(t => t.AxialLoad) ?? double.NaN,
|
||||
PressureMin = g.Min(t=> t.Pressure) ?? double.NaN,
|
||||
PressureMin = g.Min(t => t.Pressure) ?? double.NaN,
|
||||
PressureAvg = g.Average(t => t.Pressure) ?? double.NaN,
|
||||
PressureMax = g.Max(t => t.Pressure) ?? double.NaN,
|
||||
RotorTorqueMin = g.Min(t=> t.RotorTorque) ?? double.NaN,
|
||||
RotorTorqueMin = g.Min(t => t.RotorTorque) ?? double.NaN,
|
||||
RotorTorqueAvg = g.Average(t => t.RotorTorque) ?? double.NaN,
|
||||
RotorTorqueMax = g.Max(t => t.RotorTorque) ?? double.NaN,
|
||||
RotorSpeedMin = g.Min(t=> t.RotorSpeed) ?? double.NaN,
|
||||
RotorSpeedMin = g.Min(t => t.RotorSpeed) ?? double.NaN,
|
||||
RotorSpeedAvg = g.Average(t => t.RotorSpeed) ?? double.NaN,
|
||||
RotorSpeedMax = g.Max(t => t.RotorSpeed) ?? double.NaN,
|
||||
FlowMin = g.Min(t => t.Flow) ?? double.NaN,
|
||||
@ -70,9 +70,9 @@ namespace AsbCloudInfrastructure.Services
|
||||
CancellationToken token = default)
|
||||
{
|
||||
var entities = await (from p in db.DrillParams
|
||||
where p.IdWell == idWell
|
||||
orderby p.Id
|
||||
select p)
|
||||
where p.IdWell == idWell
|
||||
orderby p.Id
|
||||
select p)
|
||||
.AsNoTracking()
|
||||
.ToListAsync(token)
|
||||
.ConfigureAwait(false);
|
||||
|
@ -1,14 +1,8 @@
|
||||
using AsbCloudApp.Data;
|
||||
using AsbCloudApp.Exceptions;
|
||||
using AsbCloudApp.Services;
|
||||
using ClosedXML.Excel;
|
||||
using ClosedXML.Excel;
|
||||
using ClosedXML.Excel.Drawings;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace AsbCloudInfrastructure.Services.DrillingProgram
|
||||
{
|
||||
|
@ -79,7 +79,7 @@ namespace AsbCloudInfrastructure.Services.DrillingProgram
|
||||
public async Task<IEnumerable<FileCategoryDto>> GetCategoriesAsync(CancellationToken token = default)
|
||||
{
|
||||
var result = await context.FileCategories
|
||||
.Where(c=>c.Id > idFileCategoryDrillingProgramPartsStart && c.Id < idFileCategoryDrillingProgramPartsEnd)
|
||||
.Where(c => c.Id > idFileCategoryDrillingProgramPartsStart && c.Id < idFileCategoryDrillingProgramPartsEnd)
|
||||
.ToListAsync(token);
|
||||
return result.Select(c => c.Adapt<FileCategoryDto>());
|
||||
}
|
||||
@ -122,12 +122,12 @@ namespace AsbCloudInfrastructure.Services.DrillingProgram
|
||||
Parts = parts,
|
||||
Program = files.FirstOrDefault(f => f.IdCategory == idFileCategoryDrillingProgram)
|
||||
.Adapt<FileInfoDto>(),
|
||||
PermissionToEdit = userService.HasPermission(idUser, "DrillingProgram.edit"),
|
||||
PermissionToEdit = userService.HasPermission(idUser, "DrillingProgram.edit"),
|
||||
};
|
||||
|
||||
if (parts.Any())
|
||||
{
|
||||
if(parts.All(p=>p.IdState == idPartStateApproved))
|
||||
if (parts.All(p => p.IdState == idPartStateApproved))
|
||||
{
|
||||
if (state.Program is not null)
|
||||
{
|
||||
@ -164,7 +164,7 @@ namespace AsbCloudInfrastructure.Services.DrillingProgram
|
||||
if (part == null)
|
||||
throw new ArgumentInvalidException($"DrillingProgramPart id == {idFileCategory} does not exist", nameof(idFileCategory));
|
||||
|
||||
if (! part.RelatedUsers.Any(r => r.IdUser == idUser && r.IdUserRole == idUserRolePublisher))
|
||||
if (!part.RelatedUsers.Any(r => r.IdUser == idUser && r.IdUserRole == idUserRolePublisher))
|
||||
throw new ForbidException($"User {idUser} is not in the publisher list.");
|
||||
|
||||
var result = await fileService.SaveAsync(
|
||||
@ -192,10 +192,10 @@ namespace AsbCloudInfrastructure.Services.DrillingProgram
|
||||
var newParts = idFileCategories
|
||||
.Where(c => !existingCategories.Any(e => e == c))
|
||||
.Select(c => new DrillingProgramPart
|
||||
{
|
||||
IdWell = idWell,
|
||||
IdFileCategory = c,
|
||||
});
|
||||
{
|
||||
IdWell = idWell,
|
||||
IdFileCategory = c,
|
||||
});
|
||||
|
||||
context.DrillingProgramParts.AddRange(newParts);
|
||||
var affected = await context.SaveChangesAsync(token);
|
||||
@ -233,7 +233,7 @@ namespace AsbCloudInfrastructure.Services.DrillingProgram
|
||||
var oldRelation = await context.RelationDrillingProgramPartUsers
|
||||
.FirstOrDefaultAsync(r => r.IdUser == idUser && r.IdDrillingProgramPart == part.Id, token);
|
||||
|
||||
if(oldRelation is not null)
|
||||
if (oldRelation is not null)
|
||||
context.RelationDrillingProgramPartUsers.Remove(oldRelation);
|
||||
|
||||
var newRelation = new RelationUserDrillingProgramPart
|
||||
@ -244,7 +244,7 @@ namespace AsbCloudInfrastructure.Services.DrillingProgram
|
||||
};
|
||||
|
||||
context.RelationDrillingProgramPartUsers.Add(newRelation);
|
||||
if(idUserRole == idUserRoleApprover)
|
||||
if (idUserRole == idUserRoleApprover)
|
||||
await RemoveDrillingProgramAsync(part.IdWell, token);
|
||||
return await context.SaveChangesAsync(token);
|
||||
}
|
||||
@ -265,7 +265,7 @@ namespace AsbCloudInfrastructure.Services.DrillingProgram
|
||||
|
||||
public async Task<int> AddOrReplaceFileMarkAsync(FileMarkDto fileMarkDto, int idUser, CancellationToken token)
|
||||
{
|
||||
if(fileMarkDto.IdMarkType != idMarkTypeApprove &&
|
||||
if (fileMarkDto.IdMarkType != idMarkTypeApprove &&
|
||||
fileMarkDto.IdMarkType != idMarkTypeReject)
|
||||
throw new ArgumentInvalidException($"В этом методе допустимы только отметки о принятии или отклонении.", nameof(fileMarkDto));
|
||||
|
||||
@ -290,13 +290,13 @@ namespace AsbCloudInfrastructure.Services.DrillingProgram
|
||||
?.Where(m => m.User.Id == idUser)
|
||||
.Select(m => m.Id);
|
||||
|
||||
if(oldMarksIds?.Any() == true)
|
||||
if (oldMarksIds?.Any() == true)
|
||||
await fileService.MarkFileMarkAsDeletedAsync(oldMarksIds, token);
|
||||
|
||||
var result = await fileService.CreateFileMarkAsync(fileMarkDto, idUser, token)
|
||||
.ConfigureAwait(false);
|
||||
|
||||
if(fileMarkDto.IdMarkType == idMarkTypeReject)
|
||||
if (fileMarkDto.IdMarkType == idMarkTypeReject)
|
||||
await RemoveDrillingProgramAsync(fileInfo.IdWell, token);
|
||||
|
||||
return result;
|
||||
@ -358,7 +358,8 @@ namespace AsbCloudInfrastructure.Services.DrillingProgram
|
||||
var marks = fileEntity.FileMarks?.Where(m => !m.IsDeleted);
|
||||
if (marks?.Any() == true)
|
||||
{
|
||||
part.File.FileMarks = marks.Select(m => {
|
||||
part.File.FileMarks = marks.Select(m =>
|
||||
{
|
||||
var mark = m.Adapt<FileMarkDto>();
|
||||
mark.DateCreated = m.DateCreated.ToRemoteDateTime(timezoneOffset);
|
||||
return mark;
|
||||
@ -401,9 +402,11 @@ namespace AsbCloudInfrastructure.Services.DrillingProgram
|
||||
await fileService.MoveAsync(idWell, null, idFileCategoryDrillingProgram, resultFileName, tempResultFilePath, token);
|
||||
}
|
||||
|
||||
Task funcOnErrorProgramMake(string workId, Exception exception, CancellationToken token) {
|
||||
Task funcOnErrorProgramMake(string workId, Exception exception, CancellationToken token)
|
||||
{
|
||||
var message = $"Не удалось сформировать программу бурения по скважине {well?.Caption}";
|
||||
drillingProgramCreateErrors[workId] = new() {
|
||||
drillingProgramCreateErrors[workId] = new()
|
||||
{
|
||||
Message = message,
|
||||
Exception = exception.Message,
|
||||
};
|
||||
|
@ -6,7 +6,6 @@ using System.Collections.Generic;
|
||||
using System.Diagnostics;
|
||||
using System.Linq;
|
||||
using System.Net.Mail;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
@ -37,7 +36,7 @@ namespace AsbCloudInfrastructure.Services
|
||||
|
||||
public void EnqueueSend(IEnumerable<string> addresses, string subject, string htmlBody)
|
||||
{
|
||||
if(!IsConfigured)
|
||||
if (!IsConfigured)
|
||||
{
|
||||
Trace.TraceWarning("smtp is not configured");
|
||||
return;
|
||||
@ -107,7 +106,7 @@ namespace AsbCloudInfrastructure.Services
|
||||
int hash = -1397075115;
|
||||
var enumerator = strings.GetEnumerator();
|
||||
|
||||
while(enumerator.MoveNext())
|
||||
while (enumerator.MoveNext())
|
||||
hash ^= enumerator.Current.GetHashCode();
|
||||
return hash;
|
||||
}
|
||||
|
@ -30,7 +30,7 @@ namespace AsbCloudInfrastructure.Services
|
||||
.ThenInclude(c => c.CompanyType)
|
||||
.Include(f => f.FileMarks)
|
||||
.ThenInclude(m => m.User)
|
||||
.Include(f=>f.Well);
|
||||
.Include(f => f.Well);
|
||||
}
|
||||
|
||||
public async Task<string> GetSharedUrlAsync(int idFileInfo, int idUser, IFileShareService fileShareService,
|
||||
@ -43,7 +43,7 @@ namespace AsbCloudInfrastructure.Services
|
||||
return sharedUrl;
|
||||
}
|
||||
|
||||
public async Task<string> GetSharedUrlAsync( FileInfoDto fileInfo, int idUser, IFileShareService fileShareService,
|
||||
public async Task<string> GetSharedUrlAsync(FileInfoDto fileInfo, int idUser, IFileShareService fileShareService,
|
||||
CancellationToken token)
|
||||
{
|
||||
var fileWebUrl = fileInfo.PublishInfo?.WebStorageFileUrl;
|
||||
@ -224,7 +224,7 @@ namespace AsbCloudInfrastructure.Services
|
||||
|
||||
var relativePath = GetUrl(entity.IdWell, entity.IdCategory, entity.Id, ext);
|
||||
var fullPath = Path.GetFullPath(relativePath);
|
||||
if (! File.Exists(fullPath))
|
||||
if (!File.Exists(fullPath))
|
||||
{
|
||||
throw new FileNotFoundException("not found", relativePath);
|
||||
}
|
||||
@ -247,7 +247,7 @@ namespace AsbCloudInfrastructure.Services
|
||||
}
|
||||
|
||||
public Task<int> DeleteAsync(int idFile, CancellationToken token)
|
||||
=> DeleteAsync(new int[] { idFile}, token);
|
||||
=> DeleteAsync(new int[] { idFile }, token);
|
||||
|
||||
public async Task<int> DeleteAsync(IEnumerable<int> ids, CancellationToken token)
|
||||
{
|
||||
@ -350,7 +350,7 @@ namespace AsbCloudInfrastructure.Services
|
||||
CancellationToken token)
|
||||
{
|
||||
var fileMarkQuery = db.FileMarks
|
||||
.Where(m => idsMarks.Contains( m.Id ));
|
||||
.Where(m => idsMarks.Contains(m.Id));
|
||||
|
||||
foreach (var fileMark in fileMarkQuery)
|
||||
fileMark.IsDeleted = true;
|
||||
|
@ -1,16 +1,16 @@
|
||||
using System;
|
||||
using AsbCloudApp.Services;
|
||||
using Google.Apis.Auth.OAuth2;
|
||||
using Google.Apis.Auth.OAuth2.Flows;
|
||||
using Google.Apis.Services;
|
||||
using Google.Apis.Drive.v3;
|
||||
using Google.Apis.Util.Store;
|
||||
using Google.Apis.Drive.v3.Data;
|
||||
using System.IO;
|
||||
using Google.Apis.Services;
|
||||
using Google.Apis.Util.Store;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using AsbCloudApp.Services;
|
||||
|
||||
namespace AsbCloudInfrastructure.Services
|
||||
{
|
||||
@ -28,15 +28,15 @@ namespace AsbCloudInfrastructure.Services
|
||||
//const string accessToken = "ya29.a0ARrdaM8jLcdNDylpV70X08ix-pqU-1QfLbmQy4iRb7KWUgl3keukmd2mx5AxraEO0eveR3I_p1EacrgtlbbxtNWbXxl_YPf4mQTbhhNaoltp2aSn6VndUlyydLDKzw9J9r8ouFNnVZip9fivBmc-AX_rWXsj";
|
||||
|
||||
static readonly IAuthorizationCodeFlow flow = new GoogleAuthorizationCodeFlow(new GoogleAuthorizationCodeFlow.Initializer
|
||||
{
|
||||
ClientSecrets = new ClientSecrets
|
||||
{
|
||||
ClientSecrets = new ClientSecrets
|
||||
{
|
||||
ClientId = clientId,
|
||||
ClientSecret = clientSecret
|
||||
},
|
||||
ClientId = clientId,
|
||||
ClientSecret = clientSecret
|
||||
},
|
||||
|
||||
Scopes = new[] { DriveService.Scope.Drive },
|
||||
DataStore = new FileDataStore(applicationName),//TODO: replace FileDataStore by thread safe static datastore service
|
||||
Scopes = new[] { DriveService.Scope.Drive },
|
||||
DataStore = new FileDataStore(applicationName),//TODO: replace FileDataStore by thread safe static datastore service
|
||||
});
|
||||
|
||||
public GoogleDriveService()
|
||||
@ -116,7 +116,7 @@ namespace AsbCloudInfrastructure.Services
|
||||
public async Task CreatePublicPermissionForFileAsync(string idFile,
|
||||
CancellationToken token = default)
|
||||
{
|
||||
var permission = new Permission() { Type = "anyone", Role = "reader"};
|
||||
var permission = new Permission() { Type = "anyone", Role = "reader" };
|
||||
var addPermissionRequest = service.Permissions.Create(permission, idFile);
|
||||
await addPermissionRequest.ExecuteAsync(token)
|
||||
.ConfigureAwait(false);
|
||||
|
@ -5,7 +5,6 @@ using AsbCloudDb.Model;
|
||||
using AsbCloudInfrastructure.Services.Cache;
|
||||
using Mapster;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading;
|
||||
@ -47,7 +46,8 @@ namespace AsbCloudInfrastructure.Services
|
||||
.ConfigureAwait(false);
|
||||
|
||||
var timezone = wellService.GetTimezone(idWell);
|
||||
var dto = entity?.Adapt<MeasureDto, Measure>((d, s) => {
|
||||
var dto = entity?.Adapt<MeasureDto, Measure>((d, s) =>
|
||||
{
|
||||
d.CategoryName = s.Category?.Name;
|
||||
d.Timestamp = s.Timestamp.ToRemoteDateTime(timezone.Hours);
|
||||
});
|
||||
@ -59,7 +59,7 @@ namespace AsbCloudInfrastructure.Services
|
||||
var query = db.Measures.Include(m => m.Category)
|
||||
.Where(m => m.IdWell == idWell && !m.IsDeleted);
|
||||
|
||||
if(idCategory is not null)
|
||||
if (idCategory is not null)
|
||||
query = query.Where(m => m.IdCategory == idCategory);
|
||||
|
||||
var entities = await query
|
||||
@ -69,7 +69,8 @@ namespace AsbCloudInfrastructure.Services
|
||||
.ConfigureAwait(false);
|
||||
|
||||
var timezone = wellService.GetTimezone(idWell);
|
||||
var dtos = entities.Adapt<MeasureDto, Measure>((d, s) => {
|
||||
var dtos = entities.Adapt<MeasureDto, Measure>((d, s) =>
|
||||
{
|
||||
d.CategoryName = s.Category?.Name;
|
||||
d.Timestamp = s.Timestamp.ToRemoteDateTime(timezone.Hours);
|
||||
});
|
||||
|
@ -111,7 +111,7 @@ namespace AsbCloudInfrastructure.Services
|
||||
public DatesRangeDto GetDatesRangeOrDefault(int idWell)
|
||||
{
|
||||
var idTelemetry = telemetryService.GetIdTelemetryByIdWell(idWell);
|
||||
if(idTelemetry is null)
|
||||
if (idTelemetry is null)
|
||||
return null;
|
||||
var range = telemetryService.GetDatesRange((int)idTelemetry);
|
||||
return range;
|
||||
|
@ -1,11 +1,9 @@
|
||||
using AsbCloudApp.Data;
|
||||
using AsbCloudApp.Services;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.Concurrent;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace AsbCloudInfrastructure.Services
|
||||
{
|
||||
@ -117,10 +115,10 @@ namespace AsbCloudInfrastructure.Services
|
||||
users[key].ElapsedMs += requestLog.ElapsedMilliseconds;
|
||||
users[key].LastDate = requestLog.Date;
|
||||
users[key].Requests++;
|
||||
if(!string.IsNullOrEmpty(requestLog.ExceptionMessage))
|
||||
if (!string.IsNullOrEmpty(requestLog.ExceptionMessage))
|
||||
users[key].Errors++;
|
||||
|
||||
if(users.Count > 1000)
|
||||
if (users.Count > 1000)
|
||||
{
|
||||
var count = 900 - users.Count;
|
||||
var toRemove = users.OrderBy(kv => kv.Value.LastDate).Take(count);
|
||||
|
@ -7,7 +7,7 @@ using System.Linq;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace AsbCloudInfrastructure.Services
|
||||
namespace AsbCloudInfrastructure.Services.SAUB
|
||||
{
|
||||
public class EventService : IEventService
|
||||
{
|
@ -11,7 +11,7 @@ using System.Linq;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace AsbCloudInfrastructure.Services
|
||||
namespace AsbCloudInfrastructure.Services.SAUB
|
||||
{
|
||||
public class MessageService : IMessageService
|
||||
{
|
||||
@ -50,7 +50,7 @@ namespace AsbCloudInfrastructure.Services
|
||||
var query = db.TelemetryMessages.Where(m => m.IdTelemetry == idTelemetry)
|
||||
.OrderBy(m => m.DateTime).AsNoTracking();
|
||||
|
||||
if ((categoryids?.Any() == true) || !string.IsNullOrEmpty(searchString))
|
||||
if (categoryids?.Any() == true || !string.IsNullOrEmpty(searchString))
|
||||
{
|
||||
if (!string.IsNullOrEmpty(searchString))
|
||||
events = events.Where(e => e.MessageTemplate.Contains(searchString, StringComparison.OrdinalIgnoreCase));
|
||||
@ -68,7 +68,7 @@ namespace AsbCloudInfrastructure.Services
|
||||
|
||||
query = query.OrderByDescending(m => m.DateTime);
|
||||
|
||||
var timezone = telemetryService.GetTimezone(idTelemetry??default);
|
||||
var timezone = telemetryService.GetTimezone(idTelemetry ?? default);
|
||||
|
||||
if (begin != default)
|
||||
{
|
1
AsbCloudInfrastructure/Services/SAUB/Readme.md
Normal file
1
AsbCloudInfrastructure/Services/SAUB/Readme.md
Normal file
@ -0,0 +1 @@
|
||||
Папка содержит services для получаемых от панели оператора САУБ запросов.
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user