DD.WellWorkover.Cloud/AsbCloudApp/Data/SAUB/TelemetryWirelineRunOutDto.cs

43 lines
1.4 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
namespace AsbCloudApp.Data.SAUB
{
#nullable enable
/// <summary>
/// DTO телеметрии наработки талевого каната
/// </summary>
public class TelemetryWirelineRunOutDto
{
/// <summary>
/// отметка времени
/// </summary>
public DateTime DateTime { get; set; }
/// <summary>
/// Наработка талевого каната с момента перетяжки каната, т*км
/// </summary>
public float Hauling { get; set; }
/// <summary>
/// Наработка талевого каната до сигнализации о необходимости перетяжки, т*км
/// </summary>
public float HaulingWarnSp { get; set; }
/// <summary>
/// Наработка талевого каната с момента замены каната, т*км
/// </summary>
public float Replace { get; set; }
/// <summary>
/// Наработка талевого каната до сигнализации о необходимости замены, т*км
/// </summary>
public float ReplaceWarnSp { get; set; }
/// <summary>
/// Информация по скважине
/// </summary>
public WellInfoDto WellInfo { get; set; } = null!;
}
#nullable disable
}