forked from ddrilling/AsbCloudServer
42 lines
987 B
C#
42 lines
987 B
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 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
|
|||
|
}
|