2021-10-11 15:21:26 +05:00
|
|
|
namespace AsbCloudApp.Data
|
|
|
|
{
|
2021-10-11 16:43:10 +05:00
|
|
|
public class DrillParamsDto : IId
|
2021-10-11 15:21:26 +05:00
|
|
|
{
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
public int IdWell { get; set; }
|
|
|
|
|
|
|
|
public double DepthStart { get; set; }
|
|
|
|
|
|
|
|
public double DepthEnd { get; set; }
|
|
|
|
|
2021-10-12 11:30:07 +05:00
|
|
|
public int IdWellSectionType { get; set; }
|
|
|
|
|
2021-10-11 15:21:26 +05:00
|
|
|
public double AxialLoadMin { get; set; }
|
|
|
|
|
|
|
|
public double AxialLoadAvg { get; set; }
|
|
|
|
|
|
|
|
public double AxialLoadMax { get; set; }
|
|
|
|
|
|
|
|
public double PressureMin { get; set; }
|
|
|
|
|
|
|
|
public double PressureAvg { get; set; }
|
|
|
|
|
|
|
|
public double PressureMax { get; set; }
|
|
|
|
|
2021-10-12 11:30:07 +05:00
|
|
|
public double RotorTorqueMin { get; set; }
|
2021-10-11 15:21:26 +05:00
|
|
|
|
2021-10-12 11:30:07 +05:00
|
|
|
public double RotorTorqueAvg { get; set; }
|
2021-10-11 15:21:26 +05:00
|
|
|
|
2021-10-12 11:30:07 +05:00
|
|
|
public double RotorTorqueMax { get; set; }
|
2021-10-11 15:21:26 +05:00
|
|
|
|
2021-10-12 11:30:07 +05:00
|
|
|
public double RotorSpeedMin { get; set; }
|
2021-10-11 15:21:26 +05:00
|
|
|
|
2021-10-12 11:30:07 +05:00
|
|
|
public double RotorSpeedAvg { get; set; }
|
2021-10-11 15:21:26 +05:00
|
|
|
|
2021-10-12 11:30:07 +05:00
|
|
|
public double RotorSpeedMax { get; set; }
|
2021-10-11 15:21:26 +05:00
|
|
|
|
2021-10-11 16:20:07 +05:00
|
|
|
public double FlowMin { get; set; }
|
2021-10-11 15:21:26 +05:00
|
|
|
|
2021-10-11 16:20:07 +05:00
|
|
|
public double FlowAvg { get; set; }
|
2021-10-11 15:21:26 +05:00
|
|
|
|
2021-10-11 16:20:07 +05:00
|
|
|
public double FlowMax { get; set; }
|
2021-10-11 15:21:26 +05:00
|
|
|
}
|
|
|
|
}
|