RecordBaseDto, MinMaxExtendedViewDto, MinMaxDto, PlanFactDto, TrajectoryVisualizationDto, UserDto, UserExtendedDto, UserRegistrationDto, UserRoleDto, UserTokenDto, WellCaseDto, WellDto, WellFinalDocumentDBDto, WellFinalDocumentDto, WellFinalDocumentInputDto, WellFinalDocumentsHistoryDto, WellGroupOpertionDto, WellInfoDto, WellMapInfoDto, WellOperationCategoryDto, WellOperationDto

This commit is contained in:
ai.astrakhantsev 2023-02-27 10:02:51 +05:00
parent aceefe637a
commit f0ba243afe
21 changed files with 5 additions and 49 deletions

View File

@ -1,10 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AsbCloudApp.Data
namespace AsbCloudApp.Data
{
/// <summary>
/// Минимальное и максимальное значение

View File

@ -1,10 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AsbCloudApp.Data
namespace AsbCloudApp.Data
{
/// <summary>
/// Расширение для класса MinMaxDto

View File

@ -1,10 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AsbCloudApp.Data
namespace AsbCloudApp.Data
{
/// <summary>
/// Плановое и фактическое значения

View File

@ -1,6 +1,5 @@
namespace AsbCloudApp.Data
{
#nullable enable
/// <summary>
/// Визуализация траектории 3D
/// </summary>

View File

@ -2,7 +2,6 @@
namespace AsbCloudApp.Data
{
#nullable enable
/// <summary>
/// DTO пользователя платформы
/// </summary>

View File

@ -3,7 +3,6 @@ using System.Linq;
namespace AsbCloudApp.Data
{
#nullable enable
/// <inheritdoc/>
public class UserExtendedDto : UserDto
{

View File

@ -1,6 +1,5 @@
namespace AsbCloudApp.Data
{
#nullable enable
/// <inheritdoc/>
public class UserRegistrationDto : UserDto
{

View File

@ -4,7 +4,6 @@ using System.Linq;
namespace AsbCloudApp.Data
{
#nullable enable
/// <summary>
/// Роль пользователя платформы
/// </summary>

View File

@ -3,7 +3,6 @@ using System.Linq;
namespace AsbCloudApp.Data
{
#nullable enable
/// <inheritdoc/>
public class UserTokenDto : UserExtendedDto
{

View File

@ -34,7 +34,7 @@ namespace AsbCloudApp.Data.WITS
/// ValueType = "A"
/// </summary>
public string Wellid { get; set; }
public string Wellid { get; set; } = string.Empty;
/// <summary>
/// RecordId = 1,

View File

@ -1,12 +1,8 @@
using System;
using System.Collections.Generic;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AsbCloudApp.Data
{
#nullable enable
/// <summary>
/// Дела скважины
/// </summary>

View File

@ -5,7 +5,6 @@ using System.Linq;
namespace AsbCloudApp.Data
{
#nullable enable
/// <summary>
/// Скважина
/// </summary>

View File

@ -1,6 +1,5 @@
namespace AsbCloudApp.Data
{
#nullable enable
/// <summary>
/// DTO Дело скважины
/// </summary>
@ -21,5 +20,4 @@
/// </summary>
public int IdCategory { get; set; }
}
#nullable disable
}

View File

@ -3,7 +3,6 @@ using System.Linq;
namespace AsbCloudApp.Data
{
#nullable enable
/// <summary>
/// DTO Документ дела скважины
/// </summary>
@ -39,5 +38,4 @@ namespace AsbCloudApp.Data
/// </summary>
public FileInfoDto? File { get; set; }
}
#nullable disable
}

View File

@ -3,7 +3,6 @@ using System.Linq;
namespace AsbCloudApp.Data
{
#nullable enable
/// <summary>
/// DTO Для сохранения категорий дела скважины
/// </summary>
@ -19,5 +18,4 @@ namespace AsbCloudApp.Data
/// </summary>
public IEnumerable<int> IdsPublishers { get; set; } = Enumerable.Empty<int>();
}
#nullable disable
}

View File

@ -2,7 +2,6 @@
namespace AsbCloudApp.Data
{
#nullable enable
/// <summary>
/// DTO Дело скважины, история файлов
/// </summary>
@ -23,5 +22,4 @@ namespace AsbCloudApp.Data
/// </summary>
public IEnumerable<FileInfoDto> Files { get; set; } = null!;
}
#nullable disable
}

View File

@ -2,7 +2,6 @@
using System.Text.Json.Serialization;
namespace AsbCloudApp.Data;
#nullable enable
/// <summary>
/// Модель группированных операций по скважине
/// </summary>

View File

@ -2,7 +2,6 @@
namespace AsbCloudApp.Data
{
#nullable enable
/// <summary>
/// базовая информация о скважине
/// </summary>

View File

@ -2,7 +2,6 @@
namespace AsbCloudApp.Data
{
#nullable enable
/// <summary>
/// Инфо о скважине для отображения на карте
/// </summary>
@ -50,5 +49,4 @@ namespace AsbCloudApp.Data
/// </summary>
public double SpinUsage { get; set; }
}
#nullable disable
}

View File

@ -2,7 +2,6 @@
namespace AsbCloudApp.Data
{
#nullable enable
/// <summary>
/// DTO категория операции
/// </summary>

View File

@ -3,7 +3,6 @@ using System.ComponentModel.DataAnnotations;
namespace AsbCloudApp.Data
{
#nullable enable
/// <summary>
/// Операции на скважине (заведенные пользователем)
/// </summary>
@ -94,5 +93,4 @@ namespace AsbCloudApp.Data
[StringLength(8192)]
public string? Comment { get; set; }
}
#nullable disable
}