#9156004 CompanyDto, ReportProgressDto, ScheduleDto, StatClusterDto, StatSectionDto, StatWellDto, TelemetryBaseDto

This commit is contained in:
ai.astrakhantsev 2023-02-24 14:37:57 +05:00
parent ad5ac00079
commit 9410c55b8d
6 changed files with 19 additions and 17 deletions

View File

@ -13,7 +13,7 @@
/// <summary>
/// название текущей операции генерации
/// </summary>
public string Operation { get; set; }
public string Operation { get; set; } = string.Empty;
/// <summary>
/// номер текущей страницы

View File

@ -21,12 +21,12 @@ namespace AsbCloudApp.Data
/// <summary>
/// Начало смены
/// </summary>
public TimeDto ShiftStart { get; set; }
public TimeDto ShiftStart { get; set; } = null!;
/// <summary>
/// Конец смены
/// </summary>
public TimeDto ShiftEnd { get; set; }
public TimeDto ShiftEnd { get; set; } = null!;
/// <summary>
/// Начало бурения
@ -41,6 +41,6 @@ namespace AsbCloudApp.Data
/// <summary>
/// Бурильщик
/// </summary>
public DrillerDto Driller { get; set; }
public DrillerDto Driller { get; set; } = null!;
}
}

View File

@ -1,4 +1,5 @@
using System.Collections.Generic;
using System.Linq;
namespace AsbCloudApp.Data
{
@ -13,11 +14,11 @@ namespace AsbCloudApp.Data
/// <summary>
/// название куста
/// </summary>
public string Caption { get; set; }
public string Caption { get; set; } = string.Empty;
/// <summary>
/// список статистик скважин куста
/// </summary>
public IEnumerable<StatWellDto> StatsWells { get; set; }
public IEnumerable<StatWellDto> StatsWells { get; set; } = Enumerable.Empty<StatWellDto>();
}
}

View File

@ -11,6 +11,6 @@
/// <summary>
/// название секции
/// </summary>
public string Caption { get; set; }
public string Caption { get; set; } = string.Empty;
}
}

View File

@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
namespace AsbCloudApp.Data
{
@ -14,12 +15,12 @@ namespace AsbCloudApp.Data
/// <summary>
/// название
/// </summary>
public string Caption { get; set; }
public string Caption { get; set; } = string.Empty;
/// <summary>
/// тип скважины
/// </summary>
public string WellType { get; set; }
public string WellType { get; set; } = string.Empty;
/// <summary>
/// ИД состояния скважины
@ -29,7 +30,7 @@ namespace AsbCloudApp.Data
/// <summary>
/// текст состояния скважины
/// </summary>
public string State { get; set; }
public string State { get; set; } = string.Empty;
/// <summary>
/// дата прихода последней телеметрии
@ -39,16 +40,16 @@ namespace AsbCloudApp.Data
/// <summary>
/// Статистика по секциям
/// </summary>
public IEnumerable<StatSectionDto> Sections { get; set; }
public IEnumerable<StatSectionDto> Sections { get; set; } = Enumerable.Empty<StatSectionDto>();
/// <summary>
/// статистика за всю скважину
/// </summary>
public PlanFactBase<StatOperationsDto> Total { get; set; }
public PlanFactBase<StatOperationsDto>? Total { get; set; }
/// <summary>
/// компании участвующие в строительстве скважины
/// </summary>
public IEnumerable<CompanyDto> Companies { get; set; }
public IEnumerable<CompanyDto> Companies { get; set; } = Enumerable.Empty<CompanyDto>();
}
}

View File

@ -9,16 +9,16 @@ namespace AsbCloudApp.Data
{
/// <inheritdoc/>
public int Id { get; set; }
/// <summary>
/// уникальный идентификатор телеметрии по которому панель оператора присылает данные
/// </summary>
public string RemoteUid { get; set; }
public string RemoteUid { get; set; } = null!;
/// <summary>
/// информация о бурении, панели оператора и контроллерах
/// </summary>
public TelemetryInfoDto Info { get; set; }
public TelemetryInfoDto? Info { get; set; }
}
/// <summary>
@ -34,6 +34,6 @@ namespace AsbCloudApp.Data
/// <summary>
/// DTO скважины
/// </summary>
public WellInfoDto Well { get; set; }
public WellInfoDto Well { get; set; } = null!;
}
}