forked from ddrilling/AsbCloudServer
27 lines
1.1 KiB
C#
27 lines
1.1 KiB
C#
|
namespace AsbCloudApp.Data
|
|||
|
{
|
|||
|
public class TelemetryAnalysisDto
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public int IdTelemetry { get; set; }
|
|||
|
public int IdOperation { get; set; }
|
|||
|
public long UnixDate { get; set; }
|
|||
|
public int DurationSec { get; set; }
|
|||
|
public double? OperationStartDepth { get; set; }
|
|||
|
public double? OperationEndDepth { get; set; }
|
|||
|
public bool IsWellDepthIncreasing { get; set; }
|
|||
|
public bool IsWellDepthDecreasing { get; set; }
|
|||
|
public bool IsBitPositionIncreasing { get; set; }
|
|||
|
public bool IsBitPositionDecreasing { get; set; }
|
|||
|
public bool IsBitPositionLt20 { get; set; }
|
|||
|
public bool IsBlockPositionIncreasing { get; set; }
|
|||
|
public bool IsBlockPositionDecreasing { get; set; }
|
|||
|
public bool IsRotorSpeedLt3 { get; set; }
|
|||
|
public bool IsRotorSpeedGt3 { get; set; }
|
|||
|
public bool IsPressureLt20 { get; set; }
|
|||
|
public bool IsPressureGt20 { get; set; }
|
|||
|
public bool IsHookWeightNotChanges { get; set; }
|
|||
|
public bool IsHookWeightLt3 { get; set; }
|
|||
|
}
|
|||
|
}
|