DD.WellWorkover.Cloud/AsbCloudApp/Data/ProcessMap/ProcessMapReportDto.cs

59 lines
1.5 KiB
C#
Raw Normal View History

2022-12-27 14:30:52 +05:00
using System;
namespace AsbCloudApp.Data.ProcessMap
{
#nullable enable
/// <summary>
/// Модель РТК
/// </summary>
public class ProcessMapReportDto
{
/// <summary>
/// Идентификатор скважины
/// </summary>
public int IdWell { get; set; }
/// <summary>
/// Глубина по стволу, м
/// <para>
/// на начало интервала
/// </para>
2022-12-27 14:30:52 +05:00
/// </summary>
public double DepthStart { get; set; }
2022-12-27 14:30:52 +05:00
/// <summary>
/// Дата/ время
/// <para>
/// на начало интервала
/// </para>
2022-12-27 14:30:52 +05:00
/// </summary>
public DateTime DateStart { get; set; }
2022-12-27 14:30:52 +05:00
/// <summary>
/// Время мех бурения, ч
2022-12-27 14:30:52 +05:00
/// </summary>
public double MechDrillingHours { get; set; }
2022-12-27 14:30:52 +05:00
/// <summary>
/// Слайд
/// </summary>
public ProcessMapReportRowDto Slide { get; set; } = null!;
/// <summary>
/// Ротор
/// </summary>
public ProcessMapReportRowDto Rotor { get; set; } = null!;
/// <summary>
/// название секции скважины
/// </summary>
public int IdWellSectionType { get; set; }
2022-12-27 14:30:52 +05:00
/// <summary>
/// название секции скважины
/// </summary>
public string WellSectionTypeName { get; set; } = null!;
2022-12-27 14:30:52 +05:00
}
#nullable disable
}