DD.WellWorkover.Cloud/AsbCloudApp/Data/SAUB/TelemetryWirelineRunOutDto.cs
ngfrolov 80434475db Add telemetryWireLine.
Add InstantDataRepository
2022-04-11 17:22:52 +05:00

31 lines
1.0 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
{
public class TelemetryWirelineRunOutDto
{
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; }
}
}