namespace AsbCloudApp.Data { /// /// DTO параметров бурения /// public class DrillParamsDto : IId, IWellRelated { /// public int Id { get; set; } /// public int IdWell { get; set; } /// /// Глубина начала интервала для этих параметров /// public double DepthStart { get; set; } /// /// Глубина окончания интервала для этих параметров /// public double DepthEnd { get; set; } /// /// id well section type. /// public int IdWellSectionType { get; set; } /// /// axial load min. /// public double AxialLoadMin { get; set; } /// /// axial load avg. /// public double AxialLoadAvg { get; set; } /// /// axial load max. /// public double AxialLoadMax { get; set; } /// /// pressure min. /// public double PressureMin { get; set; } /// /// pressure avg. /// public double PressureAvg { get; set; } /// /// pressure max. /// public double PressureMax { get; set; } /// /// rotor torque min. /// public double RotorTorqueMin { get; set; } /// /// rotor torque avg. /// public double RotorTorqueAvg { get; set; } /// /// rotor torque max. /// public double RotorTorqueMax { get; set; } /// /// rotor speed min. /// public double RotorSpeedMin { get; set; } /// /// rotor speed avg. /// public double RotorSpeedAvg { get; set; } /// /// rotor speed max. /// public double RotorSpeedMax { get; set; } /// /// flow min. /// public double FlowMin { get; set; } /// /// flow avg. /// public double FlowAvg { get; set; } /// /// flow max. /// public double FlowMax { get; set; } } }