DD.WellWorkover.Cloud/AsbCloudApp/Data/ProcessMap/ProcessMapReportDto.cs
2022-12-27 14:30:52 +05:00

63 lines
1.6 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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
}