DD.WellWorkover.Cloud/AsbCloudApp/Data/ProcessMap/ProcessMapReportRowDto.cs

52 lines
1.4 KiB
C#
Raw Normal View History

2022-12-27 14:30:52 +05:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AsbCloudApp.Data.ProcessMap
{
#nullable enable
/// <summary>
/// Строки РТК
/// </summary>
public class ProcessMapReportRowDto
{
/// <summary>
/// Проходка, м
/// </summary>
public double? DeltaDepth { get; set; }
2022-12-27 14:30:52 +05:00
/// <summary>
/// Перепад давления, атм
/// </summary>
public ProcessMapReportParamsDto PressureDiff { get; set; } = null!;
2022-12-27 14:30:52 +05:00
/// <summary>
/// Нагрузка, т
/// </summary>
public ProcessMapReportParamsDto AxialLoad { get; set; } = null!;
2022-12-27 14:30:52 +05:00
/// <summary>
/// Момент на ВСП, кНхМ
/// </summary>
public ProcessMapReportParamsDto TopDriveTorque { get; set; } = null!;
/// <summary>
/// Ограничение скорости, м/ч
/// </summary>
public ProcessMapReportParamsDto SpeedLimit { get; set; } = null!;
/// <summary>
/// Процент использования системы АПД, %
/// </summary>
public double Usage { get; set; }
2022-12-27 14:30:52 +05:00
/// <summary>
/// Фактическая механическая скорость, м/ч
/// </summary>
public double Rop { get; set; }
2022-12-27 14:30:52 +05:00
}
#nullable disable
}