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