forked from ddrilling/AsbCloudServer
редактирование моделей блоков
This commit is contained in:
parent
7d9a969ca6
commit
3518ad76ff
@ -1,5 +1,4 @@
|
|||||||
using System;
|
namespace AsbCloudDb.Model.DailyReportDB
|
||||||
namespace AsbCloudDb.Model.DailyReportDB
|
|
||||||
{
|
{
|
||||||
public class DailyReportBha
|
public class DailyReportBha
|
||||||
{
|
{
|
||||||
@ -7,6 +6,57 @@ namespace AsbCloudDb.Model.DailyReportDB
|
|||||||
/// КНБК описание
|
/// КНБК описание
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string BHADescription { get; set; }
|
public string BHADescription { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Бурение с наращиваниями в инт. 2195-2763м. Время начала
|
||||||
|
/// </summary>
|
||||||
|
public string ExtensionDrillingOneBegin { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Бурение с наращиваниями в инт. 2195-2763м. Время окончания
|
||||||
|
/// </summary>
|
||||||
|
public string ExtensionDrillingOneFinish { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Промывка. Время начала
|
||||||
|
/// </summary>
|
||||||
|
public string SluiceBegin { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Промывка. Время окончания
|
||||||
|
/// </summary>
|
||||||
|
public string SluiceFinish { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Подьем КНБК. Время начала
|
||||||
|
/// </summary>
|
||||||
|
public string ClimbBegin { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Подьем КНБК. Время окончания
|
||||||
|
/// </summary>
|
||||||
|
public string ClimbFinish { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Спуск КНБК. Время начала
|
||||||
|
/// </summary>
|
||||||
|
public string DescentBegin { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Спуск КНБК. Время окончания
|
||||||
|
/// </summary>
|
||||||
|
public string DescentFinish { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Бурение с наращиваниями в инт. 2763-2850м. Время начала
|
||||||
|
/// </summary>
|
||||||
|
public string ExtensionDrillingTwoBegin { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Бурение с наращиваниями в инт. 2763-2850м. Время окончания
|
||||||
|
/// </summary>
|
||||||
|
public string ExtensionDrillingTwoFinish { get; set; }
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
using System;
|
namespace AsbCloudDb.Model.DailyReportDB
|
||||||
namespace AsbCloudDb.Model.DailyReportDB
|
|
||||||
{
|
{
|
||||||
public class DailyReportDimensionless
|
public class DailyReportDimensionless
|
||||||
{
|
{
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
using System;
|
using AsbCloudDb.Model.DailyReportDB;
|
||||||
using System.Collections.Generic;
|
|
||||||
using AsbCloudDb.Model.DailyReportDB;
|
|
||||||
|
|
||||||
namespace AsbCloudDb.Model
|
namespace AsbCloudDb.Model
|
||||||
{
|
{
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
using System;
|
using System.Collections.Generic;
|
||||||
using System.Collections.Generic;
|
|
||||||
|
|
||||||
namespace AsbCloudDb.Model.DailyReportDB
|
namespace AsbCloudDb.Model.DailyReportDB
|
||||||
{
|
{
|
||||||
@ -75,6 +74,31 @@ namespace AsbCloudDb.Model.DailyReportDB
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public string DeclinesReasonsROP { get; set; }
|
public string DeclinesReasonsROP { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Увеличение мех скорости за секцию %
|
||||||
|
/// </summary>
|
||||||
|
public string IncreaseSpeedSection { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Увеличение мех скорости за сутки %
|
||||||
|
/// </summary>
|
||||||
|
public string IncreaseSpeedDay { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Сокращение времени бурения за секцию, ч
|
||||||
|
/// </summary>
|
||||||
|
public string ReductionTimeDrilling { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Ротор/Слайд %
|
||||||
|
/// </summary>
|
||||||
|
public string RotorSlidePercent { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// МСП
|
||||||
|
/// </summary>
|
||||||
|
public string MspSection { get; set; }
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
using System;
|
namespace AsbCloudDb.Model.DailyReportDB
|
||||||
namespace AsbCloudDb.Model.DailyReportDB
|
|
||||||
{
|
{
|
||||||
public class DailyReportSign
|
public class DailyReportSign
|
||||||
{
|
{
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
using System;
|
namespace AsbCloudDb.Model.DailyReportDB
|
||||||
namespace AsbCloudDb.Model.DailyReportDB
|
|
||||||
{
|
{
|
||||||
public class DailyReportTimeBalance
|
public class DailyReportTimeBalance
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user