forked from ddrilling/AsbCloudServer
WellOperationDataDto
This commit is contained in:
parent
f88381353e
commit
dc4d9b1708
39
AsbCloudApp/Data/WellOperationDataDto.cs
Normal file
39
AsbCloudApp/Data/WellOperationDataDto.cs
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
namespace AsbCloudApp.Data
|
||||||
|
{
|
||||||
|
/// Операция на скважине
|
||||||
|
public class WellOperationDataDto : IWellRelated
|
||||||
|
{
|
||||||
|
/// <inheritdoc/>
|
||||||
|
public int IdWell { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// id секции скважины
|
||||||
|
/// </summary>
|
||||||
|
public int IdWellSectionType { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// id категории операции
|
||||||
|
/// </summary>
|
||||||
|
public int IdCategory { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Глубина на начало операции, м
|
||||||
|
/// </summary>
|
||||||
|
public double DepthStart { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Продолжительность, часы
|
||||||
|
/// </summary>
|
||||||
|
public double DurationHours { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Наименование секции
|
||||||
|
/// </summary>
|
||||||
|
public string WellSectionTypeCaption { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Наименование категории
|
||||||
|
/// </summary>
|
||||||
|
public string OperationCategoryName { get; set; } = string.Empty;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user