DD.WellWorkover.Cloud/AsbCloudDb/Model/WellOperationCategory.cs

149 lines
4.6 KiB
C#
Raw Normal View History

using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text.Json.Serialization;
2022-12-09 18:32:18 +05:00
using System;
namespace AsbCloudDb.Model
{
2022-12-09 18:32:18 +05:00
#nullable enable
[Table("t_well_operation_category"), Comment("Справочник операций на скважине")]
public class WellOperationCategory : IId
{
2022-12-09 18:32:18 +05:00
#region constants category operations ids
2022-12-09 14:36:45 +05:00
/// <summary>
2022-12-09 18:32:18 +05:00
/// БУРЕНИЕ
2022-12-09 14:36:45 +05:00
/// </summary>
2022-12-09 18:32:18 +05:00
public const int IdDrilling = 3000;
2022-12-09 14:36:45 +05:00
/// <summary>
2022-12-09 18:32:18 +05:00
/// Непроизводительное время (НПВ)
2022-12-09 14:36:45 +05:00
/// </summary>
2022-12-09 18:32:18 +05:00
public const int IdNonProductiveTime = 3005;
2022-12-09 14:36:45 +05:00
/// <summary>
2022-12-09 18:32:18 +05:00
/// Механическое. бурение
2022-12-09 14:36:45 +05:00
/// </summary>
2022-12-09 18:32:18 +05:00
public const int IdMechanicalDrilling = 4001;
2022-12-09 14:36:45 +05:00
/// <summary>
2022-12-09 18:32:18 +05:00
/// Разборка КНБК
2022-12-09 14:36:45 +05:00
/// </summary>
2022-12-09 18:32:18 +05:00
public const int IdBhaDisassembly = 5000;
/// <summary>
/// Сборка КНБК
/// </summary>
public const int IdBhaAssembly = 5001;
2022-12-09 14:36:45 +05:00
/// <summary>
/// Направленно (СЛАЙД)
/// </summary>
public const int IdSlide = 5002;
/// <summary>
2022-12-09 18:32:18 +05:00
/// Ротором (РУС)
2022-12-09 14:36:45 +05:00
/// </summary>
2022-12-09 18:32:18 +05:00
public const int IdRotor = 5003;
2022-12-09 14:36:45 +05:00
/// <summary>
/// Замер ЗТС (запись MWD)
/// </summary>
public const int IdStaticSurveying = 5004;
/// <summary>
2022-12-09 18:32:18 +05:00
/// Промывка перед наращиванием
2022-12-09 14:36:45 +05:00
/// </summary>
2022-12-09 18:32:18 +05:00
public const int IdFlashingBeforeConnection = 5005;
/// <summary>
/// Проработка перед наращиванием
/// </summary>
public const int IdDevelopment = 5007;
2022-12-09 14:36:45 +05:00
/// <summary>
/// Шаблонировка во время бурения
/// </summary>
public const int IdTemplatingWhileDrilling = 5008;
/// <summary>
2022-12-09 18:32:18 +05:00
/// Шаблонировка перед наращиванием
2022-12-09 14:36:45 +05:00
/// </summary>
2022-12-09 18:32:18 +05:00
public const int IdTemplating = 5009;
2022-12-09 14:36:45 +05:00
/// <summary>
2022-12-09 18:32:18 +05:00
/// Удержание в клиньях
2022-12-09 14:36:45 +05:00
/// </summary>
2022-12-09 18:32:18 +05:00
public const int IdSlipsTime = 5011;
/// <summary>
/// Подъем КНБК
/// </summary>
public const int IdBhaUp = 5013;
/// <summary>
/// Спуск КНБК
/// </summary>
public const int IdBhaDown = 5015;
/// <summary>
/// Спуск ОК
/// </summary>
public const int IdCasingDown = 5017;
/// <summary>
/// Промывка
/// </summary>
public const int IdFlashing = 5036;
/// <summary>
/// Ремонт бурового оборудования
/// </summary>
public const int IdEquipmentRepair = 5058;
/// <summary>
/// Список всех категорий НПВ
/// </summary>
public static readonly int[] NonProductiveTimeSubIds = {
IdEquipmentRepair,
5059,
5060,
5061,
5062,
5063,
5064,
5065,
5066,
5067,
5068,
5069,
5070,
5071,
5072,
5073,
5074,
5075,
5076,
5077,
5078,
5079,
4014,
4015,
4016,
4017,
IdNonProductiveTime,
};
public static readonly int[] MechanicalDrillingSubIds = { IdRotor, IdSlide, IdMechanicalDrilling, };
2022-12-09 14:36:45 +05:00
#endregion
[Key]
[Column("id")]
public int Id { get; set; }
[Column("name"), Comment("Название категории операции")]
2022-12-09 18:32:18 +05:00
public string Name { get; set; } = null!;
[Column("id_parent"), Comment("id родительской категории")]
public int? IdParent { get; set; }
[Column("key_value_name"), Comment("Название ключевого показателя операции"), StringLength(32)]
2022-12-09 18:32:18 +05:00
public string? KeyValueName { get; set; }
[Column("key_value_units"), Comment("Единицы измерения ключевого показателя операции"), StringLength(16)]
2022-12-09 18:32:18 +05:00
public string? KeyValueUnits { get; set; }
[JsonIgnore]
[ForeignKey(nameof(IdParent))]
2022-12-09 18:32:18 +05:00
public virtual WellOperationCategory? Parent { get; set; } = null!;
}
2022-12-09 18:32:18 +05:00
#nullable disable
}