forked from ddrilling/AsbCloudServer
45 lines
1.2 KiB
C#
45 lines
1.2 KiB
C#
namespace AsbCloudApp.Data
|
|
{
|
|
public class DrillParamsDto : IId
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int IdWell { get; set; }
|
|
|
|
public double DepthStart { get; set; }
|
|
|
|
public double DepthEnd { get; set; }
|
|
|
|
public int IdWellSectionType { get; set; }
|
|
|
|
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; }
|
|
|
|
public double RotorTorqueMin { get; set; }
|
|
|
|
public double RotorTorqueAvg { get; set; }
|
|
|
|
public double RotorTorqueMax { get; set; }
|
|
|
|
public double RotorSpeedMin { get; set; }
|
|
|
|
public double RotorSpeedAvg { get; set; }
|
|
|
|
public double RotorSpeedMax { get; set; }
|
|
|
|
public double FlowMin { get; set; }
|
|
|
|
public double FlowAvg { get; set; }
|
|
|
|
public double FlowMax { get; set; }
|
|
}
|
|
} |