2021-08-13 17:25:06 +05:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Data
|
2021-07-27 13:32:00 +05:00
|
|
|
|
{
|
2021-08-18 14:52:52 +05:00
|
|
|
|
public enum WellOpertaionType
|
|
|
|
|
{
|
|
|
|
|
Plan,
|
|
|
|
|
Fact
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-02 14:45:13 +05:00
|
|
|
|
public class WellOperationDto : IId
|
2021-07-27 13:32:00 +05:00
|
|
|
|
{
|
2021-07-28 09:46:58 +05:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
2021-08-16 14:19:43 +05:00
|
|
|
|
public int IdWell { get; set; }
|
2021-08-13 17:25:06 +05:00
|
|
|
|
|
2021-08-16 14:19:43 +05:00
|
|
|
|
public int IdWellSectionType { get; set; }
|
|
|
|
|
|
|
|
|
|
public string WellSectionTypeName { get; set; }
|
|
|
|
|
|
2021-08-18 14:52:52 +05:00
|
|
|
|
public int IdCategory { get; set; }
|
2021-08-13 17:25:06 +05:00
|
|
|
|
|
|
|
|
|
public string CategoryName { get; set; }
|
|
|
|
|
|
2021-08-18 14:52:52 +05:00
|
|
|
|
public string CategoryInfo { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// План или факт
|
|
|
|
|
/// </summary>
|
|
|
|
|
public WellOpertaionType Type { get; set; }
|
2021-07-28 09:46:58 +05:00
|
|
|
|
|
2021-08-16 14:19:43 +05:00
|
|
|
|
public double WellDepth { get; set; }
|
2021-07-28 09:46:58 +05:00
|
|
|
|
|
2021-08-13 17:25:06 +05:00
|
|
|
|
public DateTime StartDate { get; set; }
|
2021-07-28 09:46:58 +05:00
|
|
|
|
|
2021-08-16 14:19:43 +05:00
|
|
|
|
public double DurationHours { get; set; }
|
2021-07-28 09:46:58 +05:00
|
|
|
|
|
2021-08-13 17:25:06 +05:00
|
|
|
|
public string Comment { get; set; }
|
2021-07-27 13:32:00 +05:00
|
|
|
|
}
|
|
|
|
|
}
|