DD.WellWorkover.Cloud/AsbCloudInfrastructure.Tests/Services/DataSaubStat/Models/TelemetryDataSaubMap.cs

48 lines
1.2 KiB
C#
Raw Normal View History

using CsvHelper.Configuration.Attributes;
using System;
2024-10-10 15:29:27 +05:00
namespace AsbCloudInfrastructure.Tests.Services.DataSaubStat
2024-10-10 15:29:27 +05:00
{
public class TelemetryDataSaubMap
2024-10-10 15:29:27 +05:00
{
[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; }
2024-10-10 15:29:27 +05:00
}
}