DD.WellWorkover.Cloud/AsbCloudApp/Data/WellReport/SectionReportDto.cs

30 lines
759 B
C#
Raw Normal View History

using System.Collections.Generic;
using AsbCloudApp.Data.Subsystems;
namespace AsbCloudApp.Data.WellReport;
2024-09-02 09:43:21 +05:00
/// <summary>
/// Показатели по секции
/// </summary>
public class SectionReportDto
{
2024-09-02 09:43:21 +05:00
/// <summary>
/// Идентификатор секции
/// </summary>
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-09-02 09:43:21 +05:00
/// <summary>
/// Бурение по уставкам
/// </summary>
public DrillingBySetpointsDto? DrillingBySetpoints { get; set; }
}