2024-08-27 15:41:17 +05:00
|
|
|
|
using AsbCloudApp.Data.Subsystems;
|
|
|
|
|
using System.Collections.Generic;
|
2024-09-02 09:43:21 +05:00
|
|
|
|
using System.Linq;
|
2024-08-27 15:41:17 +05:00
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Data.WellReport;
|
|
|
|
|
|
2024-09-02 09:43:21 +05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Показатели бурильщиков
|
|
|
|
|
/// </summary>
|
2024-08-27 15:41:17 +05:00
|
|
|
|
public class DrillerReportDto
|
|
|
|
|
{
|
2024-09-02 09:43:21 +05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Расписание
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ScheduleDto Shedule { get; set; } = null!;
|
2024-08-27 15:41:17 +05:00
|
|
|
|
|
2024-09-02 09:43:21 +05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Наработка подсистем
|
|
|
|
|
/// </summary>
|
|
|
|
|
public IEnumerable<SubsystemStatDto> SubsystemsStat { get; set; } = Enumerable.Empty<SubsystemStatDto>();
|
2024-08-27 15:41:17 +05:00
|
|
|
|
}
|