diff --git a/AsbCloudDb/Model/DailyReport/Bha.cs b/AsbCloudDb/Model/DailyReport/Bha.cs index 5167c4b8..92c5c9b8 100644 --- a/AsbCloudDb/Model/DailyReport/Bha.cs +++ b/AsbCloudDb/Model/DailyReport/Bha.cs @@ -5,58 +5,57 @@ /// /// КНБК описание /// - public string BHADescription { get; set; } + public string BHADescription { get; set; } = string.Empty; /// /// Бурение с наращиваниями в инт. 2195-2763м. Время начала /// - public string ExtensionDrillingOneBegin { get; set; } + public string ExtensionDrillingOneBegin { get; set; } = string.Empty; /// /// Бурение с наращиваниями в инт. 2195-2763м. Время окончания /// - public string ExtensionDrillingOneFinish { get; set; } + public string ExtensionDrillingOneFinish { get; set; } = string.Empty; /// /// Промывка. Время начала /// - public string SluiceBegin { get; set; } + public string SluiceBegin { get; set; } = string.Empty; /// /// Промывка. Время окончания /// - public string SluiceFinish { get; set; } + public string SluiceFinish { get; set; } = string.Empty; /// /// Подьем КНБК. Время начала /// - public string ClimbBegin { get; set; } + public string ClimbBegin { get; set; } = string.Empty; /// /// Подьем КНБК. Время окончания /// - public string ClimbFinish { get; set; } + public string ClimbFinish { get; set; } = string.Empty; /// /// Спуск КНБК. Время начала /// - public string DescentBegin { get; set; } + public string DescentBegin { get; set; } = string.Empty; /// /// Спуск КНБК. Время окончания /// - public string DescentFinish { get; set; } + public string DescentFinish { get; set; } = string.Empty; /// /// Бурение с наращиваниями в инт. 2763-2850м. Время начала /// - public string ExtensionDrillingTwoBegin { get; set; } + public string ExtensionDrillingTwoBegin { get; set; } = string.Empty; /// /// Бурение с наращиваниями в инт. 2763-2850м. Время окончания /// - public string ExtensionDrillingTwoFinish { get; set; } + public string ExtensionDrillingTwoFinish { get; set; } = string.Empty; } } - diff --git a/AsbCloudDb/Model/DailyReport/Head.cs b/AsbCloudDb/Model/DailyReport/Head.cs index 8d90a556..16ef0fc1 100644 --- a/AsbCloudDb/Model/DailyReport/Head.cs +++ b/AsbCloudDb/Model/DailyReport/Head.cs @@ -6,22 +6,22 @@ namespace AsbCloudDb.Model.DailyReport /// /// название скважины /// - public string WellName { get; set; } + public string WellName { get; set; } = string.Empty; /// /// название куста /// - public string ClusterName { get; set; } + public string ClusterName { get; set; } = string.Empty; /// /// заказчик /// - public string Customer { get; set; } + public string Customer { get; set; } = string.Empty; /// /// подрядчик /// - public string Contractor { get; set; } + public string Contractor { get; set; } = string.Empty; /// /// дата рапорта @@ -61,12 +61,12 @@ namespace AsbCloudDb.Model.DailyReport /// /// ФИО бурильщиков /// - public string FirstDriller { get; set; } + public string FirstDriller { get; set; } = string.Empty; /// /// ФИО бурильщиков /// - public string SecondDriller { get; set; } + public string SecondDriller { get; set; } = string.Empty; /// /// Время работы АПД diff --git a/AsbCloudDb/Model/DailyReport/Saub.cs b/AsbCloudDb/Model/DailyReport/Saub.cs index dae26861..7399f148 100644 --- a/AsbCloudDb/Model/DailyReport/Saub.cs +++ b/AsbCloudDb/Model/DailyReport/Saub.cs @@ -72,32 +72,32 @@ namespace AsbCloudDb.Model.DailyReport /// /// указываются все причины, которые влияют на снижение МСП. /// - public string DeclinesReasonsROP { get; set; } + public string DeclinesReasonsROP { get; set; } = string.Empty; /// /// Увеличение мех скорости за секцию % /// - public string IncreaseSpeedSection { get; set; } + public string IncreaseSpeedSection { get; set; } = string.Empty; /// /// Увеличение мех скорости за сутки % /// - public string IncreaseSpeedDay { get; set; } + public string IncreaseSpeedDay { get; set; } = string.Empty; /// /// Сокращение времени бурения за секцию, ч /// - public string ReductionTimeDrilling { get; set; } + public string ReductionTimeDrilling { get; set; } = string.Empty; /// /// Ротор/Слайд % /// - public string RotorSlidePercent { get; set; } + public string RotorSlidePercent { get; set; } = string.Empty; /// /// МСП /// - public string MspSection { get; set; } + public string MspSection { get; set; } = string.Empty; } } diff --git a/AsbCloudDb/Model/DailyReport/Sign.cs b/AsbCloudDb/Model/DailyReport/Sign.cs index ebef294d..78271fe9 100644 --- a/AsbCloudDb/Model/DailyReport/Sign.cs +++ b/AsbCloudDb/Model/DailyReport/Sign.cs @@ -5,12 +5,12 @@ /// /// ФИО Мастера буровой /// - public string DrillingMaster { get; set; } + public string DrillingMaster { get; set; } = string.Empty; /// /// ФИО супервайзера /// - public string Supervisor { get; set; } + public string Supervisor { get; set; } = string.Empty; } } diff --git a/AsbCloudDb/Model/DailyReport/TimeBalance.cs b/AsbCloudDb/Model/DailyReport/TimeBalance.cs index a2d3a7e7..ee8c19f7 100644 --- a/AsbCloudDb/Model/DailyReport/TimeBalance.cs +++ b/AsbCloudDb/Model/DailyReport/TimeBalance.cs @@ -5,92 +5,92 @@ /// /// Бурение /// - public string Drilling { get; set; } + public string Drilling { get; set; } = string.Empty; /// /// Промывка /// - public string Flushing { get; set; } + public string Flushing { get; set; } = string.Empty; /// /// Наращивание /// - public string Building { get; set; } + public string Building { get; set; } = string.Empty; /// /// Проработка /// - public string Elaboration { get; set; } + public string Elaboration { get; set; } = string.Empty; /// /// Расширка /// - public string Extension { get; set; } + public string Extension { get; set; } = string.Empty; /// /// Ремонт /// - public string Repair { get; set; } + public string Repair { get; set; } = string.Empty; /// /// КНБК /// - public string Knbk { get; set; } + public string Knbk { get; set; } = string.Empty; /// /// СПО /// - public string Spo { get; set; } + public string Spo { get; set; } = string.Empty; /// /// ПЗР /// - public string Pzr { get; set; } + public string Pzr { get; set; } = string.Empty; /// /// ПВО /// - public string Pvo { get; set; } + public string Pvo { get; set; } = string.Empty; /// /// ПГР /// - public string Pgr { get; set; } + public string Pgr { get; set; } = string.Empty; /// /// ГИС /// - public string Gis { get; set; } + public string Gis { get; set; } = string.Empty; /// /// ОЗЦ /// - public string Ozc { get; set; } + public string Ozc { get; set; } = string.Empty; /// /// Тех. работы /// - public string EngineeringWorks { get; set; } + public string EngineeringWorks { get; set; } = string.Empty; /// /// Снятие замера /// - public string TakingMeasure { get; set; } + public string TakingMeasure { get; set; } = string.Empty; /// /// Цементирование /// - public string Cementing { get; set; } + public string Cementing { get; set; } = string.Empty; /// /// Простой /// - public string Simple { get; set; } + public string Simple { get; set; } = string.Empty; /// /// НПВ /// - public string Npv { get; set; } + public string Npv { get; set; } = string.Empty; } }