2024-08-27 15:41:17 +05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2024-08-23 16:43:09 +05:00
|
|
|
|
using AsbCloudApp.Data.User;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Data.WellReport;
|
|
|
|
|
|
2024-08-27 15:41:17 +05:00
|
|
|
|
//TODO: комментарии
|
2024-08-23 16:43:09 +05:00
|
|
|
|
public class WellReportDto
|
|
|
|
|
{
|
|
|
|
|
public WellDto Well { get; set; }
|
|
|
|
|
|
2024-08-27 15:41:17 +05:00
|
|
|
|
public DateTimeOffset? DateFrom { get; set; }
|
|
|
|
|
|
|
|
|
|
public DateTimeOffset? DateTo { get; set; }
|
|
|
|
|
|
|
|
|
|
public PlanFactDto<double?> Days { get; set; } = null!;
|
|
|
|
|
|
|
|
|
|
public PlanFactDto<double?> WellBoreDepth { get; set; }
|
|
|
|
|
|
|
|
|
|
public PlanFactDto<double?> VerticalDepth { get; set; }
|
|
|
|
|
|
|
|
|
|
public double WithoutNtpDays { get; set; }
|
2024-08-23 16:43:09 +05:00
|
|
|
|
|
|
|
|
|
public IEnumerable<ContactDto> Constacts { get; set; }
|
|
|
|
|
|
2024-08-27 15:41:17 +05:00
|
|
|
|
public IEnumerable<SectionReportDto> SectionReports { get; set; }
|
|
|
|
|
|
|
|
|
|
public IEnumerable<DrillerReportDto> DrillerReports { get; set; }
|
2024-08-23 16:43:09 +05:00
|
|
|
|
}
|