DD.WellWorkover.Cloud/AsbCloudApp/Data/WellStatDto.cs
2021-08-02 14:45:13 +05:00

22 lines
772 B
C#

using System;
using System.Collections.Generic;
namespace AsbCloudApp.Data
{
public class WellStatDto : WellDto, IId
{
public int Id { get; set; }
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; }
}
}