2021-07-21 15:22:58 +05:00
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
2021-05-17 12:53:30 +05:00
|
|
|
|
using System;
|
2021-04-02 17:28:07 +05:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2021-04-07 18:01:56 +05:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
2021-08-11 12:11:21 +05:00
|
|
|
|
using System.Data.Common;
|
2021-04-02 17:28:07 +05:00
|
|
|
|
|
|
|
|
|
#nullable disable
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudDb.Model
|
|
|
|
|
{
|
|
|
|
|
//Scaffold-DbContext "Host=localhost;Database=postgres;Username=postgres;Password=q;Persist Security Info=True" Npgsql.EntityFrameworkCore.PostgreSQL -OutputDir Model -DataAnnotations
|
|
|
|
|
public partial class AsbCloudDbContext : DbContext, IAsbCloudDbContext
|
|
|
|
|
{
|
|
|
|
|
public virtual DbSet<Cluster> Clusters { get; set; }
|
2021-07-21 12:30:51 +05:00
|
|
|
|
public virtual DbSet<Company> Companies { get; set; }
|
2021-04-02 17:28:07 +05:00
|
|
|
|
public virtual DbSet<DataSaubBase> DataSaubBases { get; set; }
|
|
|
|
|
public virtual DbSet<Deposit> Deposits { get; set; }
|
|
|
|
|
public virtual DbSet<User> Users { get; set; }
|
|
|
|
|
public virtual DbSet<UserRole> UserRoles { get; set; }
|
2021-07-27 16:55:32 +05:00
|
|
|
|
public virtual DbSet<Well> Wells { get; set; }
|
|
|
|
|
public virtual DbSet<ReportProperties> ReportProperties { get; set; }
|
2021-07-23 17:40:31 +05:00
|
|
|
|
public virtual DbSet<File> Files { get; set; }
|
|
|
|
|
public virtual DbSet<FileCategory> FileCategories { get; set; }
|
2021-07-27 14:43:30 +05:00
|
|
|
|
public virtual DbSet<Telemetry> Telemetries { get; set; }
|
2021-08-10 15:53:11 +05:00
|
|
|
|
public virtual DbSet<TelemetryEvent> TelemetryEvents { get; set; }
|
|
|
|
|
public virtual DbSet<TelemetryMessage> TelemetryMessages { get; set; }
|
2021-07-27 14:43:30 +05:00
|
|
|
|
public virtual DbSet<TelemetryUser> TelemetryUsers { get; set; }
|
2021-08-10 15:53:11 +05:00
|
|
|
|
public virtual DbSet<TelemetryOperation> TelemetryOperations { get; set; }
|
2021-07-21 15:29:19 +05:00
|
|
|
|
public virtual DbSet<TelemetryAnalysis> TelemetryAnalysis { get; set; }
|
2021-07-27 14:43:30 +05:00
|
|
|
|
public virtual DbSet<WellSection> WellSections { get; set; }
|
2021-08-13 12:33:05 +05:00
|
|
|
|
public virtual DbSet<WellSectionType> WellSectionTypes { get; set; }
|
2021-07-27 14:43:30 +05:00
|
|
|
|
public virtual DbSet<WellOperation> WellOperations { get; set; }
|
2021-07-21 15:22:58 +05:00
|
|
|
|
public virtual DbSet<WellType> WellTypes { get; set; }
|
2021-08-02 12:23:18 +05:00
|
|
|
|
public virtual DbSet<LastData> LastData { get; set; }
|
2021-04-02 17:28:07 +05:00
|
|
|
|
|
2021-07-28 09:46:58 +05:00
|
|
|
|
//var options = new DbContextOptionsBuilder<AsbCloudDbContext>()
|
|
|
|
|
// .UseNpgsql("Host=localhost;Database=postgres;Username=postgres;Password=q;Persist Security Info=True")
|
|
|
|
|
// .Options;
|
|
|
|
|
//var context = new AsbCloudDbContext(options);
|
2021-04-02 17:28:07 +05:00
|
|
|
|
|
|
|
|
|
public AsbCloudDbContext(DbContextOptions<AsbCloudDbContext> options)
|
|
|
|
|
: base(options)
|
|
|
|
|
{
|
|
|
|
|
Database.EnsureCreated();
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-23 10:21:25 +05:00
|
|
|
|
//protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
|
|
|
|
//{
|
|
|
|
|
// if (!optionsBuilder.IsConfigured)
|
|
|
|
|
// {
|
|
|
|
|
// optionsBuilder.UseNpgsql(connectionString);
|
|
|
|
|
// }
|
|
|
|
|
//}
|
2021-04-02 17:28:07 +05:00
|
|
|
|
|
|
|
|
|
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
|
|
|
|
{
|
|
|
|
|
modelBuilder.HasPostgresExtension("adminpack")
|
|
|
|
|
.HasAnnotation("Relational:Collation", "Russian_Russia.1251");
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity<Cluster>(entity =>
|
|
|
|
|
{
|
|
|
|
|
entity.HasOne(d => d.Deposit)
|
|
|
|
|
.WithMany(p => p.Clusters)
|
|
|
|
|
.HasForeignKey(d => d.IdDeposit)
|
|
|
|
|
.HasConstraintName("t_cluster_t_deposit_id_fk");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity<DataSaubBase>(entity =>
|
|
|
|
|
{
|
|
|
|
|
entity.HasOne(d => d.Telemetry)
|
|
|
|
|
.WithMany(p => p.DataSaubBases)
|
|
|
|
|
.HasForeignKey(d => d.IdTelemetry)
|
|
|
|
|
.OnDelete(DeleteBehavior.ClientSetNull)
|
|
|
|
|
.HasConstraintName("t_data_saub_base_t_telemetry_id_fk");
|
|
|
|
|
});
|
|
|
|
|
|
2021-08-10 15:53:11 +05:00
|
|
|
|
modelBuilder.Entity<TelemetryMessage>(entity =>
|
2021-04-02 17:28:07 +05:00
|
|
|
|
{
|
|
|
|
|
entity.HasOne(d => d.Telemetry)
|
|
|
|
|
.WithMany(p => p.Messages)
|
|
|
|
|
.HasForeignKey(d => d.IdTelemetry)
|
|
|
|
|
.HasConstraintName("t_messages_t_telemetry_id_fk");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity<TelemetryUser>(entity =>
|
|
|
|
|
{
|
2021-04-23 10:21:25 +05:00
|
|
|
|
entity.HasKey(nameof(TelemetryUser.IdTelemetry), nameof(TelemetryUser.IdUser));
|
2021-04-02 17:28:07 +05:00
|
|
|
|
entity.HasOne(d => d.Telemetry)
|
2021-04-23 10:21:25 +05:00
|
|
|
|
.WithMany(p => p.Users)
|
2021-04-02 17:28:07 +05:00
|
|
|
|
.HasForeignKey(d => d.IdTelemetry)
|
|
|
|
|
.OnDelete(DeleteBehavior.ClientSetNull)
|
|
|
|
|
.HasConstraintName("t_telemetry_user_t_telemetry_id_fk");
|
|
|
|
|
});
|
|
|
|
|
|
2021-07-19 15:31:50 +05:00
|
|
|
|
modelBuilder.Entity<TelemetryAnalysis>(entity =>
|
2021-06-24 13:02:31 +05:00
|
|
|
|
{
|
|
|
|
|
entity.HasOne(d => d.Telemetry)
|
|
|
|
|
.WithMany(p => p.Analysis)
|
|
|
|
|
.HasForeignKey(d => d.IdTelemetry)
|
|
|
|
|
.HasConstraintName("t_analysis_t_telemetry_id_fk");
|
|
|
|
|
|
|
|
|
|
entity.HasOne(d => d.Operation)
|
|
|
|
|
.WithMany(p => p.Analysis)
|
|
|
|
|
.HasForeignKey(d => d.IdOperation)
|
|
|
|
|
.OnDelete(DeleteBehavior.SetNull)
|
|
|
|
|
.HasConstraintName("t_analysis_t_operation_id_fk");
|
|
|
|
|
});
|
|
|
|
|
|
2021-08-10 15:53:11 +05:00
|
|
|
|
modelBuilder.Entity<TelemetryEvent>(entity =>
|
2021-04-23 10:21:25 +05:00
|
|
|
|
{
|
2021-08-10 15:53:11 +05:00
|
|
|
|
entity.HasKey(nameof(TelemetryEvent.IdTelemetry), nameof(TelemetryEvent.IdEvent));
|
2021-04-23 10:21:25 +05:00
|
|
|
|
entity.HasOne(d => d.Telemetry)
|
|
|
|
|
.WithMany(p => p.Events)
|
|
|
|
|
.HasForeignKey(d => d.IdTelemetry)
|
|
|
|
|
.HasConstraintName("t_event_t_telemetry_id_fk");
|
|
|
|
|
});
|
|
|
|
|
|
2021-04-02 17:28:07 +05:00
|
|
|
|
modelBuilder.Entity<User>(entity =>
|
|
|
|
|
{
|
2021-07-21 12:30:51 +05:00
|
|
|
|
entity.HasOne(d => d.Company)
|
2021-04-02 17:28:07 +05:00
|
|
|
|
.WithMany(p => p.Users)
|
2021-07-21 12:30:51 +05:00
|
|
|
|
.HasForeignKey(d => d.IdCompany)
|
2021-07-21 15:22:58 +05:00
|
|
|
|
.HasConstraintName("t_user_t_company_id_fk");
|
2021-04-02 17:28:07 +05:00
|
|
|
|
|
|
|
|
|
entity.HasIndex(d => d.Login)
|
|
|
|
|
.IsUnique();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity<Well>(entity =>
|
|
|
|
|
{
|
|
|
|
|
entity.HasOne(d => d.Cluster)
|
|
|
|
|
.WithMany(p => p.Wells)
|
|
|
|
|
.HasForeignKey(d => d.IdCluster)
|
|
|
|
|
.HasConstraintName("t_well_t_cluster_id_fk");
|
|
|
|
|
|
|
|
|
|
entity.HasOne(d => d.Telemetry)
|
|
|
|
|
.WithOne(p => p.Well)
|
|
|
|
|
.HasForeignKey<Well>(d => d.IdTelemetry)
|
|
|
|
|
.HasConstraintName("t_well_t_telemetry_id_fk");
|
|
|
|
|
});
|
|
|
|
|
|
2021-08-10 14:34:21 +05:00
|
|
|
|
modelBuilder.Entity<WellSection>(entity =>
|
|
|
|
|
{
|
|
|
|
|
entity.HasIndex(e => e.WellDepthPlan)
|
|
|
|
|
.HasDatabaseName("IX_t_well_section_well_depth_plan");
|
|
|
|
|
});
|
|
|
|
|
|
2021-08-09 15:41:42 +05:00
|
|
|
|
modelBuilder.Entity<RelationCompanyWell>(entity =>
|
|
|
|
|
{
|
2021-07-21 16:30:57 +05:00
|
|
|
|
|
|
|
|
|
entity.HasKey(nameof(RelationCompanyWell.IdCompany), nameof(RelationCompanyWell.IdWell));
|
|
|
|
|
|
|
|
|
|
entity.HasOne(r => r.Well)
|
|
|
|
|
.WithMany(w => w.RelationCompaniesWells)
|
|
|
|
|
.HasForeignKey(r => r.IdWell)
|
|
|
|
|
.HasConstraintName("t_relation_company_well_t_well_id_fk");
|
|
|
|
|
|
|
|
|
|
entity.HasOne(r => r.Company)
|
|
|
|
|
.WithMany(w => w.RelationCompaniesWells)
|
|
|
|
|
.HasForeignKey(r => r.IdCompany)
|
|
|
|
|
.HasConstraintName("t_relation_company_well_t_company_id_fk");
|
|
|
|
|
});
|
|
|
|
|
|
2021-04-09 17:59:07 +05:00
|
|
|
|
FillData(modelBuilder);
|
2021-07-21 17:59:18 +05:00
|
|
|
|
FillDemoData(modelBuilder);
|
2021-04-02 17:28:07 +05:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-19 15:21:19 +05:00
|
|
|
|
private static void FillData(ModelBuilder modelBuilder)
|
2021-04-09 17:59:07 +05:00
|
|
|
|
{
|
2021-07-21 17:59:18 +05:00
|
|
|
|
modelBuilder.Entity<UserRole>(entity =>
|
|
|
|
|
{
|
|
|
|
|
entity.HasData(new List<UserRole>{
|
|
|
|
|
new UserRole{ Id = 1, Caption = "Администратор", },
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity<User>(entity =>
|
|
|
|
|
{
|
|
|
|
|
entity.HasData(new List<User>{
|
|
|
|
|
new User{
|
|
|
|
|
Id = 1,
|
|
|
|
|
IdCompany = 1,
|
|
|
|
|
IdRole = 1,
|
|
|
|
|
Level = int.MaxValue,
|
|
|
|
|
Login = "dev",
|
|
|
|
|
PasswordHash = "Vlcj|4fa529103dde7ff72cfe76185f344d4aa87931f8e1b2044e8a7739947c3d18923464eaad93843e4f809c5e126d013072", // dev
|
|
|
|
|
Name = "Разработчик",
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity<Company>(entity =>
|
|
|
|
|
{
|
|
|
|
|
entity.HasData(new List<Company>{
|
2021-07-22 14:23:47 +05:00
|
|
|
|
new Company{ Id = 1, Caption = "ООО \"АСБ\"", IdCompanyType = 3},
|
2021-07-21 17:59:18 +05:00
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
2021-07-27 13:32:00 +05:00
|
|
|
|
modelBuilder.Entity<TelemetryOperation>(entity =>
|
2021-07-21 17:59:18 +05:00
|
|
|
|
{
|
2021-07-27 13:32:00 +05:00
|
|
|
|
entity.HasData(new List<TelemetryOperation> {
|
2021-08-13 14:50:13 +05:00
|
|
|
|
new TelemetryOperation {Id = 1, OperationType = 0, Name = "Невозможно определить операцию"},
|
|
|
|
|
new TelemetryOperation {Id = 2, OperationType = 0, Name = "Роторное бурение" },
|
|
|
|
|
new TelemetryOperation {Id = 3, OperationType = 0, Name = "Слайдирование" },
|
|
|
|
|
new TelemetryOperation {Id = 4, OperationType = 0, Name = "Подъем с проработкой" },
|
|
|
|
|
new TelemetryOperation {Id = 5, OperationType = 0, Name = "Спуск с проработкой" },
|
|
|
|
|
new TelemetryOperation {Id = 6, OperationType = 0, Name = "Подъем с промывкой" },
|
|
|
|
|
new TelemetryOperation {Id = 7, OperationType = 0, Name = "Спуск с промывкой" },
|
|
|
|
|
new TelemetryOperation {Id = 8, OperationType = 0, Name = "Спуск в скважину" },
|
|
|
|
|
new TelemetryOperation {Id = 9, OperationType = 0, Name = "Спуск с вращением" },
|
|
|
|
|
new TelemetryOperation {Id = 10, OperationType = 0, Name = "Подъем из скважины" },
|
|
|
|
|
new TelemetryOperation {Id = 11, OperationType = 0, Name = "Подъем с вращением" },
|
|
|
|
|
new TelemetryOperation {Id = 12, OperationType = 0, Name = "Промывка в покое" },
|
|
|
|
|
new TelemetryOperation {Id = 13, OperationType = 0, Name = "Промывка с вращением" },
|
|
|
|
|
new TelemetryOperation {Id = 14, OperationType = 0, Name = "Удержание в клиньях" },
|
|
|
|
|
new TelemetryOperation {Id = 15, OperationType = 0, Name = "Неподвижное состояние" },
|
|
|
|
|
new TelemetryOperation {Id = 16, OperationType = 0, Name = "Вращение без циркуляции" },
|
|
|
|
|
new TelemetryOperation {Id = 17, OperationType = 0, Name = "На поверхности" }
|
2021-07-21 17:59:18 +05:00
|
|
|
|
});
|
|
|
|
|
});
|
2021-07-23 17:40:31 +05:00
|
|
|
|
|
|
|
|
|
modelBuilder.Entity<FileCategory>(entity =>
|
|
|
|
|
{
|
|
|
|
|
entity.HasData(new List<FileCategory> {
|
2021-08-02 18:35:36 +05:00
|
|
|
|
new FileCategory {Id = 1, Name = "Растворный сервис", ShortName = "fluidService"},
|
|
|
|
|
new FileCategory {Id = 2, Name = "Цементирование", ShortName = "cement"},
|
|
|
|
|
new FileCategory {Id = 3, Name = "ННБ", ShortName = "nnb"},
|
|
|
|
|
new FileCategory {Id = 4, Name = "ГТИ", ShortName = "gti"},
|
|
|
|
|
new FileCategory {Id = 5, Name = "Документы по скважине", ShortName = "wellDocuments"},
|
|
|
|
|
new FileCategory {Id = 6, Name = "Супервайзер", ShortName = "supervisor"},
|
|
|
|
|
new FileCategory {Id = 7, Name = "Мастер", ShortName = "master"},
|
|
|
|
|
new FileCategory {Id = 8, Name = "Последний замер бурового раствора ПЛАН", ShortName = "fluidPlanLastData"},
|
|
|
|
|
new FileCategory {Id = 9, Name = "Последний замер бурового раствора ФАКТ", ShortName = "fluidFactLastData"},
|
|
|
|
|
new FileCategory {Id = 10, Name = "Последние данные Шламограммы", ShortName = "mudLastData"},
|
|
|
|
|
new FileCategory {Id = 11, Name = "Последние данные ННБ", ShortName = "nnbLastData"},
|
|
|
|
|
new FileCategory {Id = 12, Name = "Рапорт", ShortName = "report"}
|
2021-07-23 17:40:31 +05:00
|
|
|
|
});
|
|
|
|
|
});
|
2021-08-10 15:48:06 +05:00
|
|
|
|
|
|
|
|
|
modelBuilder.Entity<WellSectionType>(entity => {
|
|
|
|
|
entity.HasData(new List<WellSectionType>{
|
2021-08-10 15:57:58 +05:00
|
|
|
|
new WellSectionType{ Id = 1, Caption = "Пилотный ствол"},
|
|
|
|
|
new WellSectionType{ Id = 2, Caption = "Направление"},
|
|
|
|
|
new WellSectionType{ Id = 3, Caption = "Кондуктор"},
|
|
|
|
|
new WellSectionType{ Id = 4, Caption = "Эксплуатационная колонна"},
|
|
|
|
|
new WellSectionType{ Id = 5, Caption = "Транспортный ствол"},
|
|
|
|
|
new WellSectionType{ Id = 6, Caption = "Хвостовик"},
|
2021-08-10 15:48:06 +05:00
|
|
|
|
});
|
|
|
|
|
});
|
2021-07-21 17:59:18 +05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void FillDemoData(ModelBuilder modelBuilder)
|
|
|
|
|
{
|
|
|
|
|
modelBuilder.Entity<CompanyType>(entity =>
|
|
|
|
|
{
|
|
|
|
|
entity.HasData(new List<CompanyType>{
|
|
|
|
|
new CompanyType{ Id = 1, Caption = "Недрапользователь", },
|
|
|
|
|
new CompanyType{ Id = 2, Caption = "Буровой подрядчик", },
|
|
|
|
|
new CompanyType{ Id = 3, Caption = "Сервис автоматизации бурения", },
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
2021-04-09 17:59:07 +05:00
|
|
|
|
modelBuilder.Entity<Deposit>(entity =>
|
|
|
|
|
{
|
|
|
|
|
entity.HasData(new List<Deposit> {
|
2021-07-19 15:57:51 +05:00
|
|
|
|
new Deposit{Id = 1, Caption = "м/р 1", Latitude = 60.8705722222222, Longitude = 70.3811888888889 },
|
2021-04-09 17:59:07 +05:00
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity<Cluster>(entity =>
|
|
|
|
|
{
|
|
|
|
|
entity.HasData(new List<Cluster> {
|
2021-07-21 17:59:18 +05:00
|
|
|
|
new Cluster{Id = 1, Caption = "к39.1", IdDeposit = 1, Latitude = 60.8705722222222, Longitude = 70.3811888888889},
|
2021-07-19 15:57:51 +05:00
|
|
|
|
new Cluster{Id = 2, Caption = "к151", IdDeposit = 1, Latitude = 60.8205750000000, Longitude = 70.1343833333334},
|
|
|
|
|
new Cluster{Id = 3, Caption = "к611", IdDeposit = 1, Latitude = 60.8100666666667, Longitude = 69.7778388888889},
|
|
|
|
|
new Cluster{Id = 4, Caption = "к203", IdDeposit = 1, Latitude = 60.8928805555556, Longitude = 70.3272055555556},
|
2021-07-21 17:59:18 +05:00
|
|
|
|
new Cluster{Id = 5, Caption = "к221", IdDeposit = 1, Latitude = 60.6672055555556, Longitude = 69.6603861111111},
|
2021-04-09 17:59:07 +05:00
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
2021-07-21 17:59:18 +05:00
|
|
|
|
modelBuilder.Entity<Telemetry>(entity =>
|
|
|
|
|
{
|
|
|
|
|
entity.HasData(new List<Telemetry>{
|
|
|
|
|
new Telemetry{
|
|
|
|
|
Id = 1,
|
|
|
|
|
RemoteUid = "123",
|
|
|
|
|
Info = new TelemetryInfo
|
|
|
|
|
{
|
|
|
|
|
Well = "1",
|
|
|
|
|
Cluster = "1",
|
|
|
|
|
Comment = "",
|
|
|
|
|
Deposit = "1",
|
|
|
|
|
Customer = "1",
|
|
|
|
|
HmiVersion = "1",
|
|
|
|
|
PlcVersion = "1",
|
|
|
|
|
TimeZoneId = "1",
|
|
|
|
|
DrillingStartDate = DateTime.Parse("2021-06-29T12:01:19.000000"),
|
|
|
|
|
TimeZoneOffsetTotalHours = 5.0
|
|
|
|
|
},
|
|
|
|
|
}
|
2021-04-09 17:59:07 +05:00
|
|
|
|
});
|
|
|
|
|
});
|
2021-06-24 13:02:31 +05:00
|
|
|
|
|
2021-07-23 17:40:31 +05:00
|
|
|
|
modelBuilder.Entity<Well>(entity =>
|
|
|
|
|
{
|
|
|
|
|
entity.HasData(new List<Well> {
|
|
|
|
|
new Well{Id = 1, IdCluster = 1, IdTelemetry = 1, Caption = "скв 16314", Latitude = 60.8705722222222, Longitude = 70.3811888888889},
|
|
|
|
|
new Well{Id = 2, IdCluster = 1, Caption = "скв 16311", Latitude = 60.8705722222222, Longitude = 70.3811888888889},
|
|
|
|
|
new Well{Id = 3, IdCluster = 2, Caption = "скв 16315", Latitude = 60.8205750000000, Longitude = 70.1343833333334},
|
|
|
|
|
new Well{Id = 4, IdCluster = 2, Caption = "скв 16318", Latitude = 60.8205750000000, Longitude = 70.1343833333334},
|
|
|
|
|
new Well{Id = 5, IdCluster = 3, Caption = "скв 16310", Latitude = 60.8100666666667, Longitude = 69.7778388888889},
|
|
|
|
|
new Well{Id = 6, IdCluster = 4, Caption = "скв 16316", Latitude = 60.8928805555556, Longitude = 70.3272055555556},
|
|
|
|
|
new Well{Id = 7, IdCluster = 5, Caption = "скв 16312", Latitude = 60.6672055555556, Longitude = 69.6603861111111},
|
|
|
|
|
new Well{Id = 8, IdCluster = 5, Caption = "скв 16313", Latitude = 60.6672055555556, Longitude = 69.6603861111111},
|
|
|
|
|
new Well{Id = 9, IdCluster = 5, Caption = "скв 42669", Latitude = 60.6672055555556, Longitude = 69.6603861111111},
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
2021-08-09 15:41:42 +05:00
|
|
|
|
modelBuilder.Entity<RelationCompanyWell>(entity =>
|
|
|
|
|
{
|
2021-07-21 16:30:57 +05:00
|
|
|
|
entity.HasData(new List<RelationCompanyWell> {
|
|
|
|
|
new RelationCompanyWell{ IdWell = 1, IdCompany = 1},
|
|
|
|
|
new RelationCompanyWell{ IdWell = 2, IdCompany = 1},
|
|
|
|
|
new RelationCompanyWell{ IdWell = 3, IdCompany = 1},
|
|
|
|
|
new RelationCompanyWell{ IdWell = 4, IdCompany = 1},
|
|
|
|
|
new RelationCompanyWell{ IdWell = 5, IdCompany = 1},
|
|
|
|
|
new RelationCompanyWell{ IdWell = 6, IdCompany = 1},
|
|
|
|
|
new RelationCompanyWell{ IdWell = 7, IdCompany = 1},
|
|
|
|
|
new RelationCompanyWell{ IdWell = 8, IdCompany = 1},
|
|
|
|
|
new RelationCompanyWell{ IdWell = 9, IdCompany = 1},
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
2021-07-21 17:59:18 +05:00
|
|
|
|
modelBuilder.Entity<TelemetryAnalysis>(entity =>
|
2021-06-24 13:02:31 +05:00
|
|
|
|
{
|
2021-07-21 17:59:18 +05:00
|
|
|
|
entity.HasData(new List<TelemetryAnalysis>{
|
|
|
|
|
new TelemetryAnalysis
|
|
|
|
|
{
|
|
|
|
|
Id = 1,
|
|
|
|
|
IdTelemetry = 1,
|
|
|
|
|
IdOperation = 17,
|
|
|
|
|
UnixDate = 1626870355,
|
|
|
|
|
DurationSec = 10,
|
|
|
|
|
OperationStartDepth = null,
|
|
|
|
|
OperationEndDepth = 206,
|
|
|
|
|
IsWellDepthIncreasing = false,
|
|
|
|
|
IsWellDepthDecreasing = false,
|
|
|
|
|
IsBitPositionIncreasing = false,
|
|
|
|
|
IsBitPositionDecreasing = false,
|
|
|
|
|
IsBitPositionLt20 = true,
|
|
|
|
|
IsBlockPositionIncreasing = false,
|
|
|
|
|
IsBlockPositionDecreasing = false,
|
|
|
|
|
IsRotorSpeedLt3 = true,
|
|
|
|
|
IsRotorSpeedGt3 = false,
|
|
|
|
|
IsPressureLt20 = true,
|
|
|
|
|
IsPressureGt20 = false,
|
|
|
|
|
IsHookWeightNotChanges = true,
|
|
|
|
|
IsHookWeightLt3 = true
|
|
|
|
|
},
|
|
|
|
|
new TelemetryAnalysis
|
|
|
|
|
{
|
|
|
|
|
Id = 2,
|
|
|
|
|
IdTelemetry = 1,
|
|
|
|
|
IdOperation = 8,
|
|
|
|
|
UnixDate = 1626870364,
|
|
|
|
|
DurationSec = 6,
|
|
|
|
|
OperationStartDepth = 206,
|
|
|
|
|
OperationEndDepth = 206,
|
|
|
|
|
IsWellDepthIncreasing = false,
|
|
|
|
|
IsWellDepthDecreasing = false,
|
|
|
|
|
IsBitPositionIncreasing = true,
|
|
|
|
|
IsBitPositionDecreasing = false,
|
|
|
|
|
IsBitPositionLt20 = true,
|
|
|
|
|
IsBlockPositionIncreasing = true,
|
|
|
|
|
IsBlockPositionDecreasing = false,
|
|
|
|
|
IsRotorSpeedLt3 = true,
|
|
|
|
|
IsRotorSpeedGt3 = false,
|
|
|
|
|
IsPressureLt20 = true,
|
|
|
|
|
IsPressureGt20 = false,
|
|
|
|
|
IsHookWeightNotChanges = true,
|
|
|
|
|
IsHookWeightLt3 = true
|
|
|
|
|
},
|
|
|
|
|
new TelemetryAnalysis
|
|
|
|
|
{
|
|
|
|
|
Id = 3,
|
|
|
|
|
IdTelemetry = 1,
|
|
|
|
|
IdOperation = 10,
|
|
|
|
|
UnixDate = 1626870370,
|
|
|
|
|
DurationSec = 2,
|
2021-08-02 12:23:18 +05:00
|
|
|
|
OperationStartDepth = 206,
|
2021-07-21 17:59:18 +05:00
|
|
|
|
OperationEndDepth = 206,
|
|
|
|
|
IsWellDepthIncreasing = false,
|
|
|
|
|
IsWellDepthDecreasing = false,
|
|
|
|
|
IsBitPositionIncreasing = false,
|
|
|
|
|
IsBitPositionDecreasing = true,
|
|
|
|
|
IsBitPositionLt20 = true,
|
|
|
|
|
IsBlockPositionIncreasing = false,
|
|
|
|
|
IsBlockPositionDecreasing = true,
|
|
|
|
|
IsRotorSpeedLt3 = true,
|
|
|
|
|
IsRotorSpeedGt3 = false,
|
|
|
|
|
IsPressureLt20 = true,
|
|
|
|
|
IsPressureGt20 = false,
|
|
|
|
|
IsHookWeightNotChanges = true,
|
|
|
|
|
IsHookWeightLt3 = true
|
|
|
|
|
},
|
|
|
|
|
new TelemetryAnalysis
|
|
|
|
|
{
|
|
|
|
|
Id = 4,
|
|
|
|
|
IdTelemetry = 1,
|
|
|
|
|
IdOperation = 17,
|
|
|
|
|
UnixDate = 1626870372,
|
|
|
|
|
DurationSec = 7,
|
|
|
|
|
OperationStartDepth = 206,
|
|
|
|
|
OperationEndDepth = 206,
|
|
|
|
|
IsWellDepthIncreasing = false,
|
|
|
|
|
IsWellDepthDecreasing = false,
|
|
|
|
|
IsBitPositionIncreasing = false,
|
|
|
|
|
IsBitPositionDecreasing = false,
|
|
|
|
|
IsBitPositionLt20 = true,
|
|
|
|
|
IsBlockPositionIncreasing = false,
|
|
|
|
|
IsBlockPositionDecreasing = false,
|
|
|
|
|
IsRotorSpeedLt3 = true,
|
|
|
|
|
IsRotorSpeedGt3 = false,
|
|
|
|
|
IsPressureLt20 = true,
|
|
|
|
|
IsPressureGt20 = false,
|
|
|
|
|
IsHookWeightNotChanges = true,
|
|
|
|
|
IsHookWeightLt3 = true
|
|
|
|
|
},
|
|
|
|
|
new TelemetryAnalysis
|
|
|
|
|
{
|
|
|
|
|
Id = 5,
|
|
|
|
|
IdTelemetry = 1,
|
|
|
|
|
IdOperation = 8,
|
|
|
|
|
UnixDate = 1626870379,
|
|
|
|
|
DurationSec = 7,
|
|
|
|
|
OperationStartDepth = 206,
|
|
|
|
|
OperationEndDepth = 206,
|
|
|
|
|
IsWellDepthIncreasing = false,
|
|
|
|
|
IsWellDepthDecreasing = false,
|
|
|
|
|
IsBitPositionIncreasing = true,
|
|
|
|
|
IsBitPositionDecreasing = false,
|
|
|
|
|
IsBitPositionLt20 = true,
|
|
|
|
|
IsBlockPositionIncreasing = true,
|
|
|
|
|
IsBlockPositionDecreasing = false,
|
|
|
|
|
IsRotorSpeedLt3 = true,
|
|
|
|
|
IsRotorSpeedGt3 = false,
|
|
|
|
|
IsPressureLt20 = true,
|
|
|
|
|
IsPressureGt20 = false,
|
|
|
|
|
IsHookWeightNotChanges = true,
|
|
|
|
|
IsHookWeightLt3 = true
|
|
|
|
|
}
|
2021-06-24 13:02:31 +05:00
|
|
|
|
});
|
|
|
|
|
});
|
2021-04-09 17:59:07 +05:00
|
|
|
|
}
|
2021-04-02 17:28:07 +05:00
|
|
|
|
|
2021-07-21 12:30:51 +05:00
|
|
|
|
public IQueryable<Well> GetWellsForCompany(int idCompany)
|
2021-04-02 17:28:07 +05:00
|
|
|
|
{
|
|
|
|
|
return from well in Wells
|
2021-07-21 16:30:57 +05:00
|
|
|
|
.Include(w => w.RelationCompaniesWells)
|
|
|
|
|
.ThenInclude(r => r.Company)
|
2021-04-02 17:28:07 +05:00
|
|
|
|
.Include(w => w.Cluster)
|
|
|
|
|
.ThenInclude(c => c.Deposit)
|
2021-07-21 16:30:57 +05:00
|
|
|
|
where well.RelationCompaniesWells.Any(c => c.IdCompany == idCompany)
|
2021-04-02 17:28:07 +05:00
|
|
|
|
select well;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IQueryable<User> GetUsersByLogin(string login)
|
|
|
|
|
=> Users
|
|
|
|
|
.Include(e => e.Role)
|
2021-07-21 12:30:51 +05:00
|
|
|
|
.Include(e => e.Company)
|
2021-04-02 17:28:07 +05:00
|
|
|
|
.Where(e => e.Login == login);
|
2021-04-07 18:01:56 +05:00
|
|
|
|
|
2021-08-11 16:54:42 +05:00
|
|
|
|
public async Task<(DateTime From, DateTime To)> GetDatesRangeAsync<TEntity>(int idTelemetry,
|
|
|
|
|
CancellationToken token = default)
|
2021-05-17 14:04:33 +05:00
|
|
|
|
where TEntity : class, IIdTelemetryDate
|
2021-05-17 12:53:30 +05:00
|
|
|
|
{
|
2021-05-17 14:04:33 +05:00
|
|
|
|
var dbSet = Set<TEntity>();
|
|
|
|
|
|
2021-08-11 16:54:42 +05:00
|
|
|
|
var datesRange = await (from m in dbSet
|
|
|
|
|
where m.IdTelemetry == idTelemetry
|
|
|
|
|
group m by m.IdTelemetry into g
|
|
|
|
|
select new
|
|
|
|
|
{
|
|
|
|
|
From = g.Min(d => d.Date),
|
|
|
|
|
To = g.Max(d => d.Date)
|
|
|
|
|
}).AsNoTracking().FirstOrDefaultAsync(token);
|
2021-05-17 12:53:30 +05:00
|
|
|
|
|
|
|
|
|
if (datesRange is null)
|
2021-05-19 15:21:19 +05:00
|
|
|
|
return (DateTime.MinValue, DateTime.MaxValue);
|
2021-05-17 12:53:30 +05:00
|
|
|
|
|
2021-05-19 15:21:19 +05:00
|
|
|
|
return (datesRange.From, datesRange.To);
|
2021-05-17 12:53:30 +05:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-11 12:11:21 +05:00
|
|
|
|
public async Task<IEnumerable<(double? MinDepth, double? MaxDepth, DateTime BeginPeriodDate)>> GetDepthToIntervalAsync(int telemetryId,
|
2021-08-11 16:54:42 +05:00
|
|
|
|
int intervalHoursTimestamp, int workStartTimestamp, double timezoneOffset, CancellationToken token)
|
2021-06-22 09:49:53 +05:00
|
|
|
|
{
|
|
|
|
|
//TODO: Сменить на LINQ группирование
|
|
|
|
|
using var command = Database.GetDbConnection().CreateCommand();
|
|
|
|
|
|
|
|
|
|
command.CommandText = $@"SELECT Min(t.bit_depth) AS MinDepth, Max(t.bit_depth) AS MaxDepth, Min(t.Date) AS dateStart
|
|
|
|
|
FROM t_data_saub_base AS t
|
|
|
|
|
WHERE id_telemetry = {telemetryId} AND t.Id % 10 = 0
|
|
|
|
|
GROUP BY floor((extract(epoch from t.date) - {workStartTimestamp} + {timezoneOffset}) / {intervalHoursTimestamp});";
|
|
|
|
|
|
|
|
|
|
Database.OpenConnection();
|
2021-08-11 16:54:42 +05:00
|
|
|
|
using var reader = await command.ExecuteReaderAsync(token);
|
2021-08-11 12:11:21 +05:00
|
|
|
|
|
|
|
|
|
IEnumerable<(double? MinDepth, double? MaxDepth, DateTime BeginPeriodDate)> GetResult(DbDataReader rd)
|
2021-06-22 09:49:53 +05:00
|
|
|
|
{
|
2021-08-11 12:11:21 +05:00
|
|
|
|
if (rd.HasRows)
|
2021-06-22 09:49:53 +05:00
|
|
|
|
{
|
2021-08-11 12:11:21 +05:00
|
|
|
|
while (reader.Read())
|
|
|
|
|
{
|
|
|
|
|
yield return
|
|
|
|
|
(
|
|
|
|
|
(double?)reader.GetValue(0),
|
|
|
|
|
(double?)reader.GetValue(1),
|
|
|
|
|
(DateTime)reader.GetValue(2)
|
|
|
|
|
);
|
|
|
|
|
}
|
2021-06-22 09:49:53 +05:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-08-11 12:11:21 +05:00
|
|
|
|
|
|
|
|
|
return GetResult(reader);
|
2021-06-22 09:49:53 +05:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-07 18:01:56 +05:00
|
|
|
|
public async Task<int> CreatePartitionAsync<TEntity>(string propertyName, int id, CancellationToken token = default)
|
2021-04-23 10:21:25 +05:00
|
|
|
|
where TEntity : class
|
2021-04-07 18:01:56 +05:00
|
|
|
|
{
|
|
|
|
|
var dbSet = Set<TEntity>();
|
|
|
|
|
var baseTableName = dbSet.EntityType.GetTableName();
|
|
|
|
|
var schema = dbSet.EntityType.GetSchema();
|
|
|
|
|
var tableObject = Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier.Table(baseTableName, schema);
|
2021-04-23 10:21:25 +05:00
|
|
|
|
var tableName = baseTableName.Replace("_base", "");
|
2021-04-07 18:01:56 +05:00
|
|
|
|
var property = dbSet.EntityType.GetProperty(propertyName).GetColumnName(tableObject);
|
|
|
|
|
|
|
|
|
|
var query = $"CREATE TABLE {tableName}_{id} (like {baseTableName} including all, constraint partitioning_check check ({property} = 1)) INHERITS ({baseTableName});";
|
2021-04-23 10:21:25 +05:00
|
|
|
|
|
2021-04-07 18:01:56 +05:00
|
|
|
|
return await Database.ExecuteSqlRawAsync(query, token).ConfigureAwait(false);
|
|
|
|
|
}
|
2021-04-02 17:28:07 +05:00
|
|
|
|
}
|
|
|
|
|
}
|