DD.WellWorkover.Cloud/AsbCloudApp/Data/ProcessMapDto.cs

76 lines
2.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using Microsoft.EntityFrameworkCore.Metadata.Internal;
using System;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
namespace AsbCloudApp.Data
{
#nullable enable
/// <summary>
/// Операции по скважине РТК
/// </summary>
public class ProcessMapDto : IId, IWellRelated
{
/// <summary>
/// <inheritdoc/>
/// </summary>
public int Id { get; set; }
/// <summary>
/// <inheritdoc/>
/// </summary>
public int IdWell { get; set; }
/// <summary>
/// Тип секции
/// </summary>
public int IdWellSectionType { get; set; }
/// <summary>
/// Дата последнего изменения
/// </summary>
public DateTimeOffset LastUpdate { get; set; }
/// <summary>
/// Стартовая глубина
/// </summary>
public double DepthStart { get; set; }
/// <summary>
/// Глубина окончания интервала
/// </summary>
public double DepthEnd { get; set; }
/// <summary>
/// Нагрузка
/// </summary>
public PlanFactDto? AxialLoad { get; set; }
/// <summary>
/// Перепад давления
/// </summary>
public PlanFactDto? Pressure { get; set; }
/// <summary>
/// Момент на ВСП
/// </summary>
public PlanFactDto? TopDriveTorque { get; set; }
/// <summary>
/// Обороты на ВСП
/// </summary>
public PlanFactDto? TopDriveSpeed { get; set; }
/// <summary>
/// Расход
/// </summary>
public PlanFactDto? Flow { get; set; }
/// <summary>
/// Плановая механическая скорость, м/ч
/// </summary>
public double RopPlan { get; set; }
}
#nullable disable
}