DD.WellWorkover.Cloud/AsbCloudApp/Data/WellStatDto.cs
2021-08-09 14:39:23 +05:00

21 lines
731 B
C#

using System;
using System.Collections.Generic;
namespace AsbCloudApp.Data
{
public class WellStatDto : WellDto
{
public DateTime? PlanStart { get; set; }
public DateTime? PlanEnd { get; set; }
public DateTime? FactStart { get; set; }
public DateTime? FactEnd { get; set; }
public double? UnProductiveDays { get; set; }
public double? RateOfPenetrationPlan { get; set; }
public double? RateOfPenetrationFact { get; set; }
public double? RouteSpeedPlan { get; set; }
public double? RouteSpeedFact { get; set; }
public IEnumerable<WellSectionDto> Sections { get; set; }
public IEnumerable<CompanyDto> Companies { get; set; }
}
}