47 lines
1.0 KiB
C#
47 lines
1.0 KiB
C#
|
using Persistence.Models;
|
|||
|
using System.ComponentModel.DataAnnotations.Schema;
|
|||
|
|
|||
|
namespace Persistence.Repository.Data;
|
|||
|
public class DataSaubDto : ITimeSeriesAbstractDto
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
public DateTimeOffset Date { get; set; } = DateTimeOffset.UtcNow;
|
|||
|
|
|||
|
public int? Mode { get; set; }
|
|||
|
|
|||
|
public string? User { get; set; }
|
|||
|
|
|||
|
public double? WellDepth { get; set; }
|
|||
|
|
|||
|
public double? BitDepth { get; set; }
|
|||
|
|
|||
|
public double? BlockPosition { get; set; }
|
|||
|
|
|||
|
public double? BlockSpeed { get; set; }
|
|||
|
|
|||
|
public double? Pressure { get; set; }
|
|||
|
|
|||
|
public double? AxialLoad { get; set; }
|
|||
|
|
|||
|
public double? HookWeight { get; set; }
|
|||
|
|
|||
|
public double? RotorTorque { get; set; }
|
|||
|
|
|||
|
public double? RotorSpeed { get; set; }
|
|||
|
|
|||
|
public double? Flow { get; set; }
|
|||
|
|
|||
|
public short MseState { get; set; }
|
|||
|
|
|||
|
public int IdFeedRegulator { get; set; }
|
|||
|
|
|||
|
public double? Mse { get; set; }
|
|||
|
|
|||
|
public double? Pump0Flow { get; set; }
|
|||
|
|
|||
|
public double? Pump1Flow { get; set; }
|
|||
|
|
|||
|
public double? Pump2Flow { get; set; }
|
|||
|
}
|