forked from ddrilling/AsbCloudServer
48 lines
1.1 KiB
C#
48 lines
1.1 KiB
C#
using CsvHelper.Configuration.Attributes;
|
|
using System;
|
|
|
|
namespace AsbCloudInfrastructure.Tests.MapData
|
|
{
|
|
public class TelemetryDataSaubMap
|
|
{
|
|
[Name("id_telemetry")]
|
|
public int IdTelemetry { get; set; }
|
|
|
|
[Name("date")]
|
|
public DateTime DateTime { get; set; }
|
|
|
|
[Name("well_depth")]
|
|
public float WellDepth { get; set; }
|
|
|
|
[Name("bit_depth")]
|
|
public float BitDepth { get; set; }
|
|
|
|
[Name("block_speed")]
|
|
public float? BlockSpeed { get; set; }
|
|
|
|
[Name("block_speed_sp")]
|
|
public float? BlockSpeedSp { get; set; }
|
|
|
|
[Name("pressure")]
|
|
public float Pressure { get; set; }
|
|
|
|
[Name("pressure_sp")]
|
|
public float? PressureSp { get; set; }
|
|
|
|
[Name("axial_load")]
|
|
public float AxialLoad { get; set; }
|
|
|
|
[Name("axial_load_sp")]
|
|
public float? AxialLoadSp { get; set; }
|
|
|
|
[Name("rotor_torque")]
|
|
public float RotorTorque { get; set; }
|
|
|
|
[Name("rotor_torque_sp")]
|
|
public float? RotorTorqueSp { get; set; }
|
|
|
|
[Name("id_feed_regulator")]
|
|
public short? IdFeedRegulator { get; set; }
|
|
}
|
|
}
|