forked from ddrilling/AsbCloudServer
41 lines
833 B
C#
41 lines
833 B
C#
using System;
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
public enum WellOpertaionType
|
|
{
|
|
Plan,
|
|
Fact
|
|
}
|
|
|
|
public class WellOperationDto : IId
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int IdWell { get; set; }
|
|
|
|
public int IdWellSectionType { get; set; }
|
|
|
|
public string WellSectionTypeName { get; set; }
|
|
|
|
public int IdCategory { get; set; }
|
|
|
|
public string CategoryName { get; set; }
|
|
|
|
public string CategoryInfo { get; set; }
|
|
|
|
/// <summary>
|
|
/// План или факт
|
|
/// </summary>
|
|
public WellOpertaionType Type { get; set; }
|
|
|
|
public double WellDepth { get; set; }
|
|
|
|
public DateTime StartDate { get; set; }
|
|
|
|
public double DurationHours { get; set; }
|
|
|
|
public string Comment { get; set; }
|
|
}
|
|
}
|