2022-07-06 09:21:35 +05:00
|
|
|
|
namespace AsbCloudApp.Data.DailyReport
|
2022-06-23 16:42:20 +05:00
|
|
|
|
{
|
2022-07-25 18:02:39 +05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// блок баланса времени
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class TimeBalanceDto
|
2022-06-23 16:42:20 +05:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Бурение
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Drilling { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Промывка
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Flushing { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Наращивание
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Building { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Проработка
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Elaboration { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Расширка
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Extension { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Ремонт
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Repair { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// КНБК
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Knbk { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// СПО
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Spo { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// ПЗР
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Pzr { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// ПВО
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Pvo { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// ПГР
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Pgr { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// ГИС
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Gis { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// ОЗЦ
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Ozc { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Тех. работы
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string EngineeringWorks { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Снятие замера
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string TakingMeasure { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Цементирование
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Cementing { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Простой
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Simple { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// НПВ
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Npv { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|