forked from ddrilling/AsbCloudServer
#9156004 Record7Dto, AuthDto, ClusterDto, CompanyDto, CompanyTypeDto, DrillerDto, DrillingProgramPartDto, DrillingProgramStateDto
This commit is contained in:
parent
dd3a2f4ff6
commit
4634d8d4c6
@ -8,11 +8,11 @@
|
||||
/// <summary>
|
||||
/// Имя пользователя для входа
|
||||
/// </summary>
|
||||
public string Login { get; set; }
|
||||
public string Login { get; set; } = null!;
|
||||
|
||||
/// <summary>
|
||||
/// Пароль пользователя для входа
|
||||
/// </summary>
|
||||
public string Password { get; set; }
|
||||
public string Password { get; set; } = null!;
|
||||
}
|
||||
}
|
||||
|
@ -3,7 +3,6 @@ using System.Linq;
|
||||
|
||||
namespace AsbCloudApp.Data
|
||||
{
|
||||
#nullable enable
|
||||
/// <summary>
|
||||
/// DTO кустов
|
||||
/// </summary>
|
||||
|
@ -2,7 +2,6 @@
|
||||
|
||||
namespace AsbCloudApp.Data
|
||||
{
|
||||
#nullable enable
|
||||
/// <summary>
|
||||
/// DTO компании
|
||||
/// </summary>
|
||||
|
@ -11,7 +11,7 @@
|
||||
/// <summary>
|
||||
/// Название типа компании
|
||||
/// </summary>
|
||||
public string Caption { get; set; }
|
||||
public string Caption { get; set; } = null!;
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,5 @@
|
||||
namespace AsbCloudApp.Data
|
||||
{
|
||||
#nullable enable
|
||||
/// <summary>
|
||||
/// Описание данных для бурильщика
|
||||
/// </summary>
|
||||
@ -26,5 +25,4 @@
|
||||
/// </summary>
|
||||
public string? Patronymic { get; set; }
|
||||
}
|
||||
#nullable disable
|
||||
}
|
||||
|
@ -3,7 +3,6 @@ using System.Linq;
|
||||
|
||||
namespace AsbCloudApp.Data
|
||||
{
|
||||
#nullable enable
|
||||
/// <summary>
|
||||
/// Часть программы бурения
|
||||
/// </summary>
|
||||
|
@ -3,7 +3,6 @@ using System.Linq;
|
||||
|
||||
namespace AsbCloudApp.Data
|
||||
{
|
||||
#nullable enable
|
||||
/// <summary>
|
||||
/// DTO состояния формирования программы бурения
|
||||
/// </summary>
|
||||
|
@ -82,7 +82,7 @@ namespace AsbCloudApp.Data.WITS
|
||||
/// ValueType = "A"
|
||||
/// </summary>
|
||||
|
||||
public string Svytype { get; set; }
|
||||
public string Svytype { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// RecordId = 7,
|
||||
|
Loading…
Reference in New Issue
Block a user