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

42 lines
987 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
{
#nullable enable
/// <summary>
/// Параметры РТК
/// </summary>
public class ProcessMapReportParamsDto
{
/// <summary>
/// Уставка план
/// </summary>
public double SetPointPlan { get; set; }
/// <summary>
/// Уставка факт
/// </summary>
public double? SetPointFact { get; set; }
/// <summary>
/// Факт
/// </summary>
public double? Fact { get; set; }
/// <summary>
/// Ограничение
/// </summary>
public double? Limit { get; set; }
/// <summary>
/// Процент бурения по уставке ,%
/// </summary>
public double? PercDrillingSetPoint { get; set; }
}
#nullable disable
}