forked from ddrilling/AsbCloudServer
52 lines
1.5 KiB
C#
52 lines
1.5 KiB
C#
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 ProcessMapReportParamsDto PressureDrop { get; set; } = null!;
|
||
|
||
/// <summary>
|
||
/// Нагрузка, т
|
||
/// </summary>
|
||
public ProcessMapReportParamsDto Load { get; set; } = null!;
|
||
|
||
/// <summary>
|
||
/// Момент на ВСП, кНхМ
|
||
/// </summary>
|
||
public ProcessMapReportParamsDto TopDriveTorque { get; set; } = null!;
|
||
|
||
/// <summary>
|
||
/// Ограничение скорости, м/ч
|
||
/// </summary>
|
||
public ProcessMapReportParamsDto SpeedLimit { get; set; } = null!;
|
||
|
||
/// <summary>
|
||
/// Процент использования системы АПД, %
|
||
/// </summary>
|
||
public double PercentageADFSystemUsage { get; set; }
|
||
|
||
/// <summary>
|
||
/// Фактическая механическая скорость, м/ч
|
||
/// </summary>
|
||
public double ActualMechanicalSpeed { get; set; }
|
||
|
||
/// <summary>
|
||
/// Проходка, м
|
||
/// </summary>
|
||
public double? SectionPenetration { get; set; }
|
||
}
|
||
#nullable disable
|
||
}
|