#9156004 DailyReportDto, HeadDto. DetectedOperationDto, DetectedOperationListDto, DetectedOperationStatDto

This commit is contained in:
ai.astrakhantsev 2023-02-22 09:26:22 +05:00
parent d36139c037
commit 5178b59ba7
6 changed files with 0 additions and 16 deletions

View File

@ -1,6 +1,5 @@
namespace AsbCloudApp.Data.DailyReport
{
#nullable enable
/// <summary>
/// Блоки для формирования суточного рапорта
/// </summary>
@ -36,5 +35,4 @@
/// </summary>
public SignDto Sign { get; set; } = new();
}
#nullable disable
}

View File

@ -105,11 +105,6 @@ namespace AsbCloudApp.Data.DailyReport
/// Количество запусков МСЕ
/// </summary>
public int CountLaunchesMSE { get; set; }
}
}

View File

@ -1,6 +1,5 @@
namespace AsbCloudApp.Data.DetectedOperation
{
#nullable enable
/// <summary>
/// Статистика по операциям бурильщика
/// </summary>
@ -36,5 +35,4 @@
/// </summary>
public double? Loss { get; set; }
}
#nullable disable
}

View File

@ -2,7 +2,6 @@
namespace AsbCloudApp.Data.DetectedOperation
{
#nullable enable
/// <summary>
/// Автоматически определяемая операция
/// </summary>
@ -74,5 +73,4 @@ namespace AsbCloudApp.Data.DetectedOperation
/// </summary>
public double Value { get; set; }
}
#nullable disable
}

View File

@ -3,8 +3,6 @@ using System.Linq;
namespace AsbCloudApp.Data.DetectedOperation
{
#nullable enable
/// <summary>
/// Автоматически определяемая операция
/// </summary>
@ -20,5 +18,4 @@ namespace AsbCloudApp.Data.DetectedOperation
/// </summary>
public IEnumerable<DetectedOperationDrillersStatDto> Stats { get; set; } = Enumerable.Empty<DetectedOperationDrillersStatDto>();
}
#nullable disable
}

View File

@ -1,6 +1,5 @@
namespace AsbCloudApp.Data.DetectedOperation
{
#nullable enable
/// <summary>
/// Статистика по операциям например за период.
/// </summary>
@ -56,5 +55,4 @@
/// </summary>
public double MinutesAverage { get; set; }
}
#nullable disable
}