DD.WellWorkover.Cloud/AsbCloudApp/Data/WellOperationDto.cs

52 lines
1.3 KiB
C#
Raw Normal View History

using System;
namespace AsbCloudApp.Data
2021-07-27 13:32:00 +05:00
{
2021-08-02 14:45:13 +05:00
public class WellOperationDto : IId
2021-07-27 13:32:00 +05:00
{
2021-07-28 09:46:58 +05:00
public int Id { get; set; }
public int IdWell { get; set; }
public int IdWellSectionType { get; set; }
public string WellSectionTypeName { get; set; }
public int IdCategory { get; set; }
public string CategoryName { get; set; }
public string CategoryInfo { get; set; }
/// <summary>
/// 0 = план или 1 = факт или прогноз = 2
/// </summary>
public int IdType { get; set; }
2021-07-28 09:46:58 +05:00
/// <summary>
/// Глубина на начало операции, м
/// </summary>
public double DepthStart { get; set; }
2021-07-28 09:46:58 +05:00
/// <summary>
/// Глубина после завершения операции, м
/// </summary>
public double DepthEnd { get; set; }
2021-07-28 09:46:58 +05:00
/// <summary>
/// Дата начала операции
/// </summary>
public DateTime DateStart { get; set; }
/// <summary>
/// Продолжительность, часы
/// </summary>
public double DurationHours { get; set; }
2021-07-28 09:46:58 +05:00
/// <summary>
/// Полезный комментарий
/// </summary>
public string Comment { get; set; }
2021-07-27 13:32:00 +05:00
}
}