forked from ddrilling/AsbCloudServer
37 lines
877 B
C#
37 lines
877 B
C#
using System;
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
public class DrillFlowChartDto : IId
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int IdWell { get; set; }
|
|
|
|
public DateTime LastUpdate { get; set; }
|
|
|
|
public double DepthStart { get; set; }
|
|
|
|
public double DepthEnd { get; set; }
|
|
|
|
public double AxialLoadMin { get; set; }
|
|
|
|
public double AxialLoadMax { get; set; }
|
|
|
|
public double PressureMin { get; set; }
|
|
|
|
public double PressureMax { get; set; }
|
|
|
|
public double RotorTorqueMin { get; set; }
|
|
|
|
public double RotorTorqueMax { get; set; }
|
|
|
|
public double RotorSpeedMin { get; set; }
|
|
|
|
public double RotorSpeedMax { get; set; }
|
|
|
|
public double FlowMin { get; set; }
|
|
|
|
public double FlowMax { get; set; }
|
|
}
|
|
} |