forked from ddrilling/AsbCloudServer
63 lines
1.6 KiB
C#
63 lines
1.6 KiB
C#
|
using System;
|
|||
|
|
|||
|
namespace AsbCloudApp.Data.ProcessMap
|
|||
|
{
|
|||
|
#nullable enable
|
|||
|
/// <summary>
|
|||
|
/// Модель РТК
|
|||
|
/// </summary>
|
|||
|
public class ProcessMapReportDto
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Идентификатор скважины
|
|||
|
/// </summary>
|
|||
|
public int IdWell { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Глубина по стволу, м
|
|||
|
/// </summary>
|
|||
|
public double Depth { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Дата/ время
|
|||
|
/// </summary>
|
|||
|
public DateTimeOffset Date { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Т мех бурения, ч
|
|||
|
/// </summary>
|
|||
|
public double MechDrillingTime { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Слайд
|
|||
|
/// </summary>
|
|||
|
public ProcessMapReportRowDto Slide { get; set; } = null!;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Ротор
|
|||
|
/// </summary>
|
|||
|
public ProcessMapReportRowDto Rotor { get; set; } = null!;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// название секции скважины
|
|||
|
/// </summary>
|
|||
|
public string? WellSectionTypeName { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// название секции скважины
|
|||
|
/// </summary>
|
|||
|
public int? IdWellSectionType { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Категория
|
|||
|
/// </summary>
|
|||
|
public string? Category { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Идентификатор категории
|
|||
|
/// </summary>
|
|||
|
public int? IdCategory { get; set; }
|
|||
|
}
|
|||
|
#nullable disable
|
|||
|
}
|