2024-08-27 15:41:17 +05:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using AsbCloudApp.Data.Subsystems;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Data.WellReport;
|
|
|
|
|
|
2024-09-02 09:43:21 +05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Показатели по секции
|
|
|
|
|
/// </summary>
|
2024-08-27 15:41:17 +05:00
|
|
|
|
public class SectionReportDto
|
|
|
|
|
{
|
2024-09-02 09:43:21 +05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Идентификатор секции
|
|
|
|
|
/// </summary>
|
2024-08-27 15:41:17 +05:00
|
|
|
|
public int IdSection { get; set; }
|
|
|
|
|
|
2024-09-02 09:43:21 +05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Наработка подсистем
|
|
|
|
|
/// </summary>
|
|
|
|
|
public IEnumerable<SubsystemStatDto> SubsystemsStat { get; set; } = [];
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Режимы бурения
|
|
|
|
|
/// </summary>
|
|
|
|
|
public PlanFactDto<OperatingModeDto> OperatingMode { get; set; } = null!;
|
2024-08-27 15:41:17 +05:00
|
|
|
|
|
2024-09-02 09:43:21 +05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Бурение по уставкам
|
|
|
|
|
/// </summary>
|
2024-08-27 15:41:17 +05:00
|
|
|
|
public DrillingBySetpointsDto? DrillingBySetpoints { get; set; }
|
|
|
|
|
}
|