DD.WellWorkover.Cloud/AsbCloudApp/Data/DrillParamsDto.cs

45 lines
1.0 KiB
C#
Raw Normal View History

namespace AsbCloudApp.Data
{
public class DrillParamsDto : IId
{
public int Id { get; set; }
2022-04-11 18:00:34 +05:00
public int IdWell { get; set; }
2022-04-11 18:00:34 +05:00
public double DepthStart { get; set; }
2022-04-11 18:00:34 +05:00
public double DepthEnd { get; set; }
2022-04-11 18:00:34 +05:00
public int IdWellSectionType { get; set; }
public double AxialLoadMin { get; set; }
2022-04-11 18:00:34 +05:00
public double AxialLoadAvg { get; set; }
2022-04-11 18:00:34 +05:00
public double AxialLoadMax { get; set; }
2022-04-11 18:00:34 +05:00
public double PressureMin { get; set; }
2022-04-11 18:00:34 +05:00
public double PressureAvg { get; set; }
2022-04-11 18:00:34 +05:00
public double PressureMax { get; set; }
public double RotorTorqueMin { get; set; }
2022-04-11 18:00:34 +05:00
public double RotorTorqueAvg { get; set; }
2022-04-11 18:00:34 +05:00
public double RotorTorqueMax { get; set; }
2022-04-11 18:00:34 +05:00
public double RotorSpeedMin { get; set; }
2022-04-11 18:00:34 +05:00
public double RotorSpeedAvg { get; set; }
2022-04-11 18:00:34 +05:00
public double RotorSpeedMax { get; set; }
2022-04-11 18:00:34 +05:00
public double FlowMin { get; set; }
2022-04-11 18:00:34 +05:00
public double FlowAvg { get; set; }
2022-04-11 18:00:34 +05:00
public double FlowMax { get; set; }
}
}