forked from ddrilling/AsbCloudServer
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:
parent
aceefe637a
commit
f0ba243afe
@ -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>
|
||||
/// Минимальное и максимальное значение
|
||||
|
@ -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
|
||||
|
@ -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>
|
||||
/// Плановое и фактическое значения
|
||||
|
@ -1,6 +1,5 @@
|
||||
namespace AsbCloudApp.Data
|
||||
{
|
||||
#nullable enable
|
||||
/// <summary>
|
||||
/// Визуализация траектории 3D
|
||||
/// </summary>
|
||||
|
@ -2,7 +2,6 @@
|
||||
|
||||
namespace AsbCloudApp.Data
|
||||
{
|
||||
#nullable enable
|
||||
/// <summary>
|
||||
/// DTO пользователя платформы
|
||||
/// </summary>
|
||||
|
@ -3,7 +3,6 @@ using System.Linq;
|
||||
|
||||
namespace AsbCloudApp.Data
|
||||
{
|
||||
#nullable enable
|
||||
/// <inheritdoc/>
|
||||
public class UserExtendedDto : UserDto
|
||||
{
|
||||
|
@ -1,6 +1,5 @@
|
||||
namespace AsbCloudApp.Data
|
||||
{
|
||||
#nullable enable
|
||||
/// <inheritdoc/>
|
||||
public class UserRegistrationDto : UserDto
|
||||
{
|
||||
|
@ -4,7 +4,6 @@ using System.Linq;
|
||||
|
||||
namespace AsbCloudApp.Data
|
||||
{
|
||||
#nullable enable
|
||||
/// <summary>
|
||||
/// Роль пользователя платформы
|
||||
/// </summary>
|
||||
|
@ -3,7 +3,6 @@ using System.Linq;
|
||||
|
||||
namespace AsbCloudApp.Data
|
||||
{
|
||||
#nullable enable
|
||||
/// <inheritdoc/>
|
||||
public class UserTokenDto : UserExtendedDto
|
||||
{
|
||||
|
@ -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,
|
||||
|
@ -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>
|
||||
|
@ -5,7 +5,6 @@ using System.Linq;
|
||||
|
||||
namespace AsbCloudApp.Data
|
||||
{
|
||||
#nullable enable
|
||||
/// <summary>
|
||||
/// Скважина
|
||||
/// </summary>
|
||||
|
@ -1,6 +1,5 @@
|
||||
namespace AsbCloudApp.Data
|
||||
{
|
||||
#nullable enable
|
||||
/// <summary>
|
||||
/// DTO Дело скважины
|
||||
/// </summary>
|
||||
@ -21,5 +20,4 @@
|
||||
/// </summary>
|
||||
public int IdCategory { get; set; }
|
||||
}
|
||||
#nullable disable
|
||||
}
|
||||
|
@ -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
|
||||
}
|
||||
|
@ -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
|
||||
}
|
||||
|
@ -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
|
||||
}
|
||||
|
@ -2,7 +2,6 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace AsbCloudApp.Data;
|
||||
#nullable enable
|
||||
/// <summary>
|
||||
/// Модель группированных операций по скважине
|
||||
/// </summary>
|
||||
|
@ -2,7 +2,6 @@
|
||||
|
||||
namespace AsbCloudApp.Data
|
||||
{
|
||||
#nullable enable
|
||||
/// <summary>
|
||||
/// базовая информация о скважине
|
||||
/// </summary>
|
||||
|
@ -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
|
||||
}
|
||||
|
@ -2,7 +2,6 @@
|
||||
|
||||
namespace AsbCloudApp.Data
|
||||
{
|
||||
#nullable enable
|
||||
/// <summary>
|
||||
/// DTO категория операции
|
||||
/// </summary>
|
||||
|
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user