2023-11-14 10:44:06 +05:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace AsbCloudDb.Model.DailyReports.Blocks.TimeBalance;
|
|
|
|
|
|
|
|
public class TimeBalanceBlock : ItemInfo
|
|
|
|
{
|
2024-07-04 11:02:45 +05:00
|
|
|
public int IdSection { get; set; }
|
2023-11-14 10:44:06 +05:00
|
|
|
|
2024-07-04 11:02:45 +05:00
|
|
|
public string? SectionName { get; set; }
|
2023-11-14 10:44:06 +05:00
|
|
|
|
2024-07-04 11:02:45 +05:00
|
|
|
public double? WellDepthPlan { get; set; }
|
2023-11-14 10:44:06 +05:00
|
|
|
|
2024-07-04 11:02:45 +05:00
|
|
|
public double WellDepthFact { get; set; }
|
2023-11-14 10:44:06 +05:00
|
|
|
|
2024-07-04 11:02:45 +05:00
|
|
|
public double? WellOperationSlipsTimeCount { get; set; }
|
2023-11-14 10:44:06 +05:00
|
|
|
|
2024-07-04 11:02:45 +05:00
|
|
|
public IEnumerable<TimeBalanceRecord>? WellOperations { get; set; }
|
2023-11-14 10:44:06 +05:00
|
|
|
}
|