forked from ddrilling/AsbCloudServer
59 lines
1.4 KiB
C#
59 lines
1.4 KiB
C#
|
using System;
|
|||
|
|
|||
|
namespace AsbCloudApp.Data
|
|||
|
{
|
|||
|
public class DataSaubBaseDto
|
|||
|
{
|
|||
|
public DateTime Date { get; set; }
|
|||
|
|
|||
|
public int? Mode { get; set; }
|
|||
|
|
|||
|
public double? WellDepth { get; set; }
|
|||
|
|
|||
|
public double? BitDepth { get; set; }
|
|||
|
|
|||
|
public double? BlockHeight { get; set; }
|
|||
|
|
|||
|
public double? BlockSpeed { get; set; }
|
|||
|
|
|||
|
public double? BlockSpeedSp { get; set; }
|
|||
|
|
|||
|
public double? Pressure { get; set; }
|
|||
|
|
|||
|
public double? PressureIdle { get; set; }
|
|||
|
|
|||
|
public double? PressureSp { get; set; }
|
|||
|
|
|||
|
public double? PressureDeltaLimitMax { get; set; }
|
|||
|
|
|||
|
public double? AxialLoad { get; set; }
|
|||
|
|
|||
|
public double? AxialLoadSp { get; set; }
|
|||
|
|
|||
|
public double? AxialLoadLimitMax { get; set; }
|
|||
|
|
|||
|
public double? HookWeight { get; set; }
|
|||
|
|
|||
|
public double? HookWeightIdle { get; set; }
|
|||
|
|
|||
|
public double? HookWeightLimitMin { get; set; }
|
|||
|
|
|||
|
public double? HookWeightLimitMax { get; set; }
|
|||
|
|
|||
|
public double? RotorTorque { get; set; }
|
|||
|
|
|||
|
public double? RotorTorqueIdle { get; set; }
|
|||
|
|
|||
|
public double? RotorTorqueSp { get; set; }
|
|||
|
|
|||
|
public double? RotorTorqueLimitMax { get; set; }
|
|||
|
|
|||
|
public double? RotorSpeed { get; set; }
|
|||
|
|
|||
|
public double? Flow { get; set; }
|
|||
|
|
|||
|
public double? FlowIdle { get; set; }
|
|||
|
|
|||
|
public double? FlowDeltaLimitMax { get; set; }
|
|||
|
}
|
|||
|
}
|