2024-10-16 18:02:38 +05:00
|
|
|
using CsvHelper.Configuration.Attributes;
|
2024-10-14 10:51:39 +05:00
|
|
|
|
2024-10-18 10:06:52 +05:00
|
|
|
namespace AsbCloudInfrastructure.Tests.Services.DataSaubStat
|
2024-10-14 10:51:39 +05:00
|
|
|
{
|
2024-10-16 18:02:38 +05:00
|
|
|
public class DataSaubStatDrillingQualityDtoMap
|
2024-10-14 10:51:39 +05:00
|
|
|
{
|
2024-10-16 18:02:38 +05:00
|
|
|
[Name("id_telemetry")]
|
|
|
|
public int IdTelemetry { get; set; }
|
|
|
|
|
|
|
|
[Name("depth_start")]
|
|
|
|
public float DepthStart { get; set; }
|
|
|
|
|
|
|
|
[Name("depth_end")]
|
|
|
|
public float DepthEnd { get; set; }
|
2024-10-18 10:06:52 +05:00
|
|
|
|
2024-10-16 18:02:38 +05:00
|
|
|
[Name("depth_drilling_quality")]
|
|
|
|
public float DepthDrillingQuality { get; set; }
|
|
|
|
|
|
|
|
[Name("id_feed_regulator")]
|
|
|
|
public short? IdFeedRegulator { get; set; }
|
2024-10-14 10:51:39 +05:00
|
|
|
}
|
|
|
|
}
|