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

40 lines
953 B
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
{
/// <summary>
/// Параметры РТК
/// </summary>
public class ProcessMapReportParamsDto
{
/// <summary>
/// Уставка план
/// </summary>
2023-01-10 12:31:01 +05:00
public double? SetpointPlan { get; set; }
2022-12-27 14:30:52 +05:00
/// <summary>
/// Уставка факт
/// </summary>
2023-01-10 12:31:01 +05:00
public double? SetpointFact { get; set; }
2022-12-27 14:30:52 +05:00
/// <summary>
/// Факт
/// </summary>
public double? Fact { get; set; }
/// <summary>
/// Ограничение
/// </summary>
public double? Limit { get; set; }
/// <summary>
/// Процент бурения по уставке, %
2022-12-27 14:30:52 +05:00
/// </summary>
2023-01-10 12:31:01 +05:00
public double? PercDrillingSetpoint { get; set; }
2022-12-27 14:30:52 +05:00
}
}