forked from ddrilling/AsbCloudServer
30 lines
759 B
C#
30 lines
759 B
C#
using System.Collections.Generic;
|
|
using AsbCloudApp.Data.Subsystems;
|
|
|
|
namespace AsbCloudApp.Data.WellReport;
|
|
|
|
/// <summary>
|
|
/// Показатели по секции
|
|
/// </summary>
|
|
public class SectionReportDto
|
|
{
|
|
/// <summary>
|
|
/// Идентификатор секции
|
|
/// </summary>
|
|
public int IdSection { get; set; }
|
|
|
|
/// <summary>
|
|
/// Наработка подсистем
|
|
/// </summary>
|
|
public IEnumerable<SubsystemStatDto> SubsystemsStat { get; set; } = [];
|
|
|
|
/// <summary>
|
|
/// Режимы бурения
|
|
/// </summary>
|
|
public PlanFactDto<OperatingModeDto> OperatingMode { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// Бурение по уставкам
|
|
/// </summary>
|
|
public DrillingBySetpointsDto? DrillingBySetpoints { get; set; }
|
|
} |