From 3518ad76ffc66cf18cf0fde95811fd74c0617236 Mon Sep 17 00:00:00 2001 From: IvanovEugeniy Date: Tue, 5 Jul 2022 11:49:01 +0500 Subject: [PATCH] =?UTF-8?q?=D1=80=D0=B5=D0=B4=D0=B0=D0=BA=D1=82=D0=B8?= =?UTF-8?q?=D1=80=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8=D0=B5=20=D0=BC=D0=BE=D0=B4?= =?UTF-8?q?=D0=B5=D0=BB=D0=B5=D0=B9=20=D0=B1=D0=BB=D0=BE=D0=BA=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Model/DailyReportDB/DailyReportBha.cs | 54 ++++++++++++++++++- .../DailyReportDB/DailyReportDimensionless.cs | 3 +- .../Model/DailyReportDB/DailyReportInfo.cs | 4 +- .../Model/DailyReportDB/DailyReportSaub.cs | 28 +++++++++- .../Model/DailyReportDB/DailyReportSign.cs | 3 +- .../DailyReportDB/DailyReportTimeBalance.cs | 3 +- 6 files changed, 82 insertions(+), 13 deletions(-) diff --git a/AsbCloudDb/Model/DailyReportDB/DailyReportBha.cs b/AsbCloudDb/Model/DailyReportDB/DailyReportBha.cs index 8adc9512..14c53798 100644 --- a/AsbCloudDb/Model/DailyReportDB/DailyReportBha.cs +++ b/AsbCloudDb/Model/DailyReportDB/DailyReportBha.cs @@ -1,5 +1,4 @@ -using System; -namespace AsbCloudDb.Model.DailyReportDB +namespace AsbCloudDb.Model.DailyReportDB { public class DailyReportBha { @@ -7,6 +6,57 @@ namespace AsbCloudDb.Model.DailyReportDB /// КНБК описание /// public string BHADescription { get; set; } + + /// + /// Бурение с наращиваниями в инт. 2195-2763м. Время начала + /// + public string ExtensionDrillingOneBegin { get; set; } + + /// + /// Бурение с наращиваниями в инт. 2195-2763м. Время окончания + /// + public string ExtensionDrillingOneFinish { get; set; } + + /// + /// Промывка. Время начала + /// + public string SluiceBegin { get; set; } + + /// + /// Промывка. Время окончания + /// + public string SluiceFinish { get; set; } + + /// + /// Подьем КНБК. Время начала + /// + public string ClimbBegin { get; set; } + + /// + /// Подьем КНБК. Время окончания + /// + public string ClimbFinish { get; set; } + + /// + /// Спуск КНБК. Время начала + /// + public string DescentBegin { get; set; } + + /// + /// Спуск КНБК. Время окончания + /// + public string DescentFinish { get; set; } + + /// + /// Бурение с наращиваниями в инт. 2763-2850м. Время начала + /// + public string ExtensionDrillingTwoBegin { get; set; } + + /// + /// Бурение с наращиваниями в инт. 2763-2850м. Время окончания + /// + public string ExtensionDrillingTwoFinish { get; set; } + } } diff --git a/AsbCloudDb/Model/DailyReportDB/DailyReportDimensionless.cs b/AsbCloudDb/Model/DailyReportDB/DailyReportDimensionless.cs index 42b84e62..79cc5ffd 100644 --- a/AsbCloudDb/Model/DailyReportDB/DailyReportDimensionless.cs +++ b/AsbCloudDb/Model/DailyReportDB/DailyReportDimensionless.cs @@ -1,5 +1,4 @@ -using System; -namespace AsbCloudDb.Model.DailyReportDB +namespace AsbCloudDb.Model.DailyReportDB { public class DailyReportDimensionless { diff --git a/AsbCloudDb/Model/DailyReportDB/DailyReportInfo.cs b/AsbCloudDb/Model/DailyReportDB/DailyReportInfo.cs index 7d288da9..c0ae5b22 100644 --- a/AsbCloudDb/Model/DailyReportDB/DailyReportInfo.cs +++ b/AsbCloudDb/Model/DailyReportDB/DailyReportInfo.cs @@ -1,6 +1,4 @@ -using System; -using System.Collections.Generic; -using AsbCloudDb.Model.DailyReportDB; +using AsbCloudDb.Model.DailyReportDB; namespace AsbCloudDb.Model { diff --git a/AsbCloudDb/Model/DailyReportDB/DailyReportSaub.cs b/AsbCloudDb/Model/DailyReportDB/DailyReportSaub.cs index 77ea88f0..b0c13528 100644 --- a/AsbCloudDb/Model/DailyReportDB/DailyReportSaub.cs +++ b/AsbCloudDb/Model/DailyReportDB/DailyReportSaub.cs @@ -1,5 +1,4 @@ -using System; -using System.Collections.Generic; +using System.Collections.Generic; namespace AsbCloudDb.Model.DailyReportDB { @@ -75,6 +74,31 @@ namespace AsbCloudDb.Model.DailyReportDB /// public string DeclinesReasonsROP { get; set; } + /// + /// Увеличение мех скорости за секцию % + /// + public string IncreaseSpeedSection { get; set; } + + /// + /// Увеличение мех скорости за сутки % + /// + public string IncreaseSpeedDay { get; set; } + + /// + /// Сокращение времени бурения за секцию, ч + /// + public string ReductionTimeDrilling { get; set; } + + /// + /// Ротор/Слайд % + /// + public string RotorSlidePercent { get; set; } + + /// + /// МСП + /// + public string MspSection { get; set; } + } } diff --git a/AsbCloudDb/Model/DailyReportDB/DailyReportSign.cs b/AsbCloudDb/Model/DailyReportDB/DailyReportSign.cs index 99373e2f..96427e1f 100644 --- a/AsbCloudDb/Model/DailyReportDB/DailyReportSign.cs +++ b/AsbCloudDb/Model/DailyReportDB/DailyReportSign.cs @@ -1,5 +1,4 @@ -using System; -namespace AsbCloudDb.Model.DailyReportDB +namespace AsbCloudDb.Model.DailyReportDB { public class DailyReportSign { diff --git a/AsbCloudDb/Model/DailyReportDB/DailyReportTimeBalance.cs b/AsbCloudDb/Model/DailyReportDB/DailyReportTimeBalance.cs index 21b7a7ee..f80b7d91 100644 --- a/AsbCloudDb/Model/DailyReportDB/DailyReportTimeBalance.cs +++ b/AsbCloudDb/Model/DailyReportDB/DailyReportTimeBalance.cs @@ -1,5 +1,4 @@ -using System; -namespace AsbCloudDb.Model.DailyReportDB +namespace AsbCloudDb.Model.DailyReportDB { public class DailyReportTimeBalance {