DD.WellWorkover.Cloud/AsbCloudApp/Data/WellOperationDto.cs
2022-03-10 17:17:52 +05:00

62 lines
1.8 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
namespace AsbCloudApp.Data
{
public class WellOperationDto : IId
{
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; }
/// <summary>
/// Глубина на начало операции, м
/// </summary>
public double DepthStart { get; set; }
/// <summary>
/// Глубина после завершения операции, м
/// </summary>
public double DepthEnd { get; set; }
/// <summary>
/// Кол-во дней от даты начала первой плановой (а если её нет, то фактической) операции
/// </summary>
public double Day { get; set; }
/// <summary>
/// Кол-во часов НПВ от даты начала первой плановой (а если её нет, то фактической) операции
/// </summary>
public double NptHours { get; set; }
/// <summary>
/// Дата начала операции
/// </summary>
public DateTime DateStart { get; set; }
/// <summary>
/// Продолжительность, часы
/// </summary>
public double DurationHours { get; set; }
/// <summary>
/// Полезный комментарий
/// </summary>
public string Comment { get; set; }
}
}