2024-07-04 11:02:45 +05:00
|
|
|
using System;
|
2024-01-16 13:24:42 +05:00
|
|
|
using System.ComponentModel.DataAnnotations;
|
2022-11-18 14:29:29 +05:00
|
|
|
|
2024-08-19 10:01:07 +05:00
|
|
|
namespace AsbCloudApp.Data;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Статистика по ограничивающим параметрам
|
|
|
|
/// </summary>
|
|
|
|
public class LimitingParameterDto
|
2022-11-18 14:29:29 +05:00
|
|
|
{
|
|
|
|
/// <summary>
|
2024-08-19 10:01:07 +05:00
|
|
|
/// Нет ограничения
|
2022-11-18 14:29:29 +05:00
|
|
|
/// </summary>
|
2024-08-19 10:01:07 +05:00
|
|
|
public const int NoLimit = 0;
|
2024-02-12 16:55:50 +05:00
|
|
|
|
2024-08-19 10:01:07 +05:00
|
|
|
/// <summary>
|
|
|
|
/// МСП
|
|
|
|
/// </summary>
|
|
|
|
public const int RopPlan = 1;
|
2024-02-12 16:55:50 +05:00
|
|
|
|
2024-08-19 10:01:07 +05:00
|
|
|
/// <summary>
|
|
|
|
/// Давление
|
|
|
|
/// </summary>
|
|
|
|
public const int Pressure = 2;
|
2024-02-12 16:55:50 +05:00
|
|
|
|
2024-08-19 10:01:07 +05:00
|
|
|
/// <summary>
|
|
|
|
/// Осевая нагрузка
|
|
|
|
/// </summary>
|
|
|
|
public const int AxialLoad = 3;
|
2024-02-12 16:55:50 +05:00
|
|
|
|
2024-08-19 10:01:07 +05:00
|
|
|
/// <summary>
|
|
|
|
/// Момент
|
|
|
|
/// </summary>
|
|
|
|
public const int RotorTorque = 4;
|
|
|
|
/// <summary>
|
|
|
|
/// Идентификатор скважины
|
|
|
|
/// </summary>
|
|
|
|
[Required]
|
|
|
|
public int IdWell { get; set; }
|
2022-11-18 14:29:29 +05:00
|
|
|
|
2024-08-19 10:01:07 +05:00
|
|
|
/// <summary>
|
|
|
|
/// Время бурения
|
|
|
|
/// </summary>
|
|
|
|
[Required]
|
|
|
|
public float TotalMinutes { get; set; }
|
2022-11-18 14:29:29 +05:00
|
|
|
|
2024-08-19 10:01:07 +05:00
|
|
|
/// <summary>
|
|
|
|
/// Глубина бурения
|
|
|
|
/// </summary>
|
|
|
|
[Required]
|
|
|
|
public float Depth { get; set; }
|
2022-11-18 14:29:29 +05:00
|
|
|
|
2024-08-19 10:01:07 +05:00
|
|
|
/// <summary>
|
|
|
|
/// Идентификатор критерия бурения
|
|
|
|
/// </summary>
|
|
|
|
[Required]
|
|
|
|
public short IdFeedRegulator { get; set; }
|
2022-11-28 11:54:02 +05:00
|
|
|
|
2024-08-19 10:01:07 +05:00
|
|
|
/// <summary>
|
|
|
|
/// Наименование критерия бурения
|
|
|
|
/// </summary>
|
|
|
|
[Required]
|
|
|
|
public string NameFeedRegulator { get; set; } = string.Empty;
|
2022-11-28 11:54:02 +05:00
|
|
|
|
2024-08-19 10:01:07 +05:00
|
|
|
/// <summary>
|
|
|
|
/// Количество включений
|
|
|
|
/// </summary>
|
|
|
|
[Required]
|
|
|
|
public int NumberInclusions { get; set; }
|
2022-11-18 14:29:29 +05:00
|
|
|
}
|