forked from ddrilling/AsbCloudServer
Merge branch 'dev' of ssh://git.ddrilling.ru:2221/on.nemtina/DD.WellWorkover.Cloud into dev
This commit is contained in:
commit
b64064fae0
@ -13,7 +13,7 @@ using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|||||||
namespace AsbCloudDb.Migrations
|
namespace AsbCloudDb.Migrations
|
||||||
{
|
{
|
||||||
[DbContext(typeof(AsbCloudDbContext))]
|
[DbContext(typeof(AsbCloudDbContext))]
|
||||||
[Migration("20250109123425_TelemetryDataWellWorkover")]
|
[Migration("20250113122319_TelemetryDataWellWorkover")]
|
||||||
partial class TelemetryDataWellWorkover
|
partial class TelemetryDataWellWorkover
|
||||||
{
|
{
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
@ -7377,17 +7377,17 @@ namespace AsbCloudDb.Migrations
|
|||||||
|
|
||||||
b.Property<float>("BitDepth")
|
b.Property<float>("BitDepth")
|
||||||
.HasColumnType("real")
|
.HasColumnType("real")
|
||||||
.HasColumnName("tool_depth")
|
.HasColumnName("bit_depth")
|
||||||
.HasComment("Глубина инструмента, м ");
|
.HasComment("Глубина инструмента, м ");
|
||||||
|
|
||||||
b.Property<float>("BlockPosition")
|
b.Property<float>("BlockPosition")
|
||||||
.HasColumnType("real")
|
.HasColumnType("real")
|
||||||
.HasColumnName("hook_block_depth")
|
.HasColumnName("block_position")
|
||||||
.HasComment("Высота крюкоблока, м");
|
.HasComment("Высота крюкоблока, м");
|
||||||
|
|
||||||
b.Property<float>("FlowRate")
|
b.Property<float>("FlowRate")
|
||||||
.HasColumnType("real")
|
.HasColumnType("real")
|
||||||
.HasColumnName("liquid_rate")
|
.HasColumnName("flow_rate")
|
||||||
.HasComment("Расход доливаемой жидкости, м3/ч");
|
.HasComment("Расход доливаемой жидкости, м3/ч");
|
||||||
|
|
||||||
b.Property<float>("GasIndicationsCH4")
|
b.Property<float>("GasIndicationsCH4")
|
||||||
@ -7402,7 +7402,7 @@ namespace AsbCloudDb.Migrations
|
|||||||
|
|
||||||
b.Property<float>("HookLoad")
|
b.Property<float>("HookLoad")
|
||||||
.HasColumnType("real")
|
.HasColumnType("real")
|
||||||
.HasColumnName("hook_weight")
|
.HasColumnName("hook_load")
|
||||||
.HasComment("Вес на крюке");
|
.HasComment("Вес на крюке");
|
||||||
|
|
||||||
b.Property<int?>("IdUser")
|
b.Property<int?>("IdUser")
|
||||||
@ -7412,22 +7412,22 @@ namespace AsbCloudDb.Migrations
|
|||||||
|
|
||||||
b.Property<float>("MudDensity")
|
b.Property<float>("MudDensity")
|
||||||
.HasColumnType("real")
|
.HasColumnType("real")
|
||||||
.HasColumnName("liquid_density")
|
.HasColumnName("mud_density")
|
||||||
.HasComment("Плотность жидкости в ДЕ, г/см3");
|
.HasComment("Плотность жидкости в ДЕ, г/см3");
|
||||||
|
|
||||||
b.Property<float>("MudTemperatureInBlowOutPreventor")
|
b.Property<float>("MudTemperatureInBlowOutPreventor")
|
||||||
.HasColumnType("real")
|
.HasColumnType("real")
|
||||||
.HasColumnName("liquid_branch_brace_temperature")
|
.HasColumnName("mud_temperature_in_blow_out_preventor")
|
||||||
.HasComment("Температура жидкости в отводе крестовины ПВО, С");
|
.HasComment("Температура жидкости в отводе крестовины ПВО, С");
|
||||||
|
|
||||||
b.Property<float>("TripInOutSpeed")
|
b.Property<float>("TripInOutSpeed")
|
||||||
.HasColumnType("real")
|
.HasColumnType("real")
|
||||||
.HasColumnName("up_and_down_operations_speed")
|
.HasColumnName("trip_in_out_speed")
|
||||||
.HasComment("Скорость СПО, м/с");
|
.HasComment("Скорость СПО, м/с");
|
||||||
|
|
||||||
b.Property<float>("TripTankVolume")
|
b.Property<float>("TripTankVolume")
|
||||||
.HasColumnType("real")
|
.HasColumnType("real")
|
||||||
.HasColumnName("slagging_tank_volume")
|
.HasColumnName("trip_tank_volume")
|
||||||
.HasComment("Объем доливной емкости (ДЕ), м3");
|
.HasComment("Объем доливной емкости (ДЕ), м3");
|
||||||
|
|
||||||
b.Property<float>("WellLevel")
|
b.Property<float>("WellLevel")
|
@ -18,15 +18,15 @@ namespace AsbCloudDb.Migrations
|
|||||||
id_telemetry = table.Column<int>(type: "integer", nullable: false),
|
id_telemetry = table.Column<int>(type: "integer", nullable: false),
|
||||||
date = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: false, comment: "'2021-10-19 18:23:54+05'"),
|
date = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: false, comment: "'2021-10-19 18:23:54+05'"),
|
||||||
id_user = table.Column<int>(type: "integer", nullable: true, comment: "Пользователь ТКРС"),
|
id_user = table.Column<int>(type: "integer", nullable: true, comment: "Пользователь ТКРС"),
|
||||||
tool_depth = table.Column<float>(type: "real", nullable: false, comment: "Глубина инструмента, м "),
|
bit_depth = table.Column<float>(type: "real", nullable: false, comment: "Глубина инструмента, м "),
|
||||||
hook_block_depth = table.Column<float>(type: "real", nullable: false, comment: "Высота крюкоблока, м"),
|
block_position = table.Column<float>(type: "real", nullable: false, comment: "Высота крюкоблока, м"),
|
||||||
hook_weight = table.Column<float>(type: "real", nullable: false, comment: "Вес на крюке"),
|
hook_load = table.Column<float>(type: "real", nullable: false, comment: "Вес на крюке"),
|
||||||
up_and_down_operations_speed = table.Column<float>(type: "real", nullable: false, comment: "Скорость СПО, м/с"),
|
trip_in_out_speed = table.Column<float>(type: "real", nullable: false, comment: "Скорость СПО, м/с"),
|
||||||
slagging_tank_volume = table.Column<float>(type: "real", nullable: false, comment: "Объем доливной емкости (ДЕ), м3"),
|
trip_tank_volume = table.Column<float>(type: "real", nullable: false, comment: "Объем доливной емкости (ДЕ), м3"),
|
||||||
liquid_density = table.Column<float>(type: "real", nullable: false, comment: "Плотность жидкости в ДЕ, г/см3"),
|
mud_density = table.Column<float>(type: "real", nullable: false, comment: "Плотность жидкости в ДЕ, г/см3"),
|
||||||
liquid_rate = table.Column<float>(type: "real", nullable: false, comment: "Расход доливаемой жидкости, м3/ч"),
|
flow_rate = table.Column<float>(type: "real", nullable: false, comment: "Расход доливаемой жидкости, м3/ч"),
|
||||||
well_level = table.Column<float>(type: "real", nullable: false, comment: "Уровень в скважине (по эхолоту), м"),
|
well_level = table.Column<float>(type: "real", nullable: false, comment: "Уровень в скважине (по эхолоту), м"),
|
||||||
liquid_branch_brace_temperature = table.Column<float>(type: "real", nullable: false, comment: "Температура жидкости в отводе крестовины ПВО, С"),
|
mud_temperature_in_blow_out_preventor = table.Column<float>(type: "real", nullable: false, comment: "Температура жидкости в отводе крестовины ПВО, С"),
|
||||||
gas_indications_CH4 = table.Column<float>(type: "real", nullable: false, comment: "Газопоказания (СН4), %"),
|
gas_indications_CH4 = table.Column<float>(type: "real", nullable: false, comment: "Газопоказания (СН4), %"),
|
||||||
gas_indications_H2S = table.Column<float>(type: "real", nullable: false, comment: "Газопоказания (Н2S), %")
|
gas_indications_H2S = table.Column<float>(type: "real", nullable: false, comment: "Газопоказания (Н2S), %")
|
||||||
},
|
},
|
@ -7374,17 +7374,17 @@ namespace AsbCloudDb.Migrations
|
|||||||
|
|
||||||
b.Property<float>("BitDepth")
|
b.Property<float>("BitDepth")
|
||||||
.HasColumnType("real")
|
.HasColumnType("real")
|
||||||
.HasColumnName("tool_depth")
|
.HasColumnName("bit_depth")
|
||||||
.HasComment("Глубина инструмента, м ");
|
.HasComment("Глубина инструмента, м ");
|
||||||
|
|
||||||
b.Property<float>("BlockPosition")
|
b.Property<float>("BlockPosition")
|
||||||
.HasColumnType("real")
|
.HasColumnType("real")
|
||||||
.HasColumnName("hook_block_depth")
|
.HasColumnName("block_position")
|
||||||
.HasComment("Высота крюкоблока, м");
|
.HasComment("Высота крюкоблока, м");
|
||||||
|
|
||||||
b.Property<float>("FlowRate")
|
b.Property<float>("FlowRate")
|
||||||
.HasColumnType("real")
|
.HasColumnType("real")
|
||||||
.HasColumnName("liquid_rate")
|
.HasColumnName("flow_rate")
|
||||||
.HasComment("Расход доливаемой жидкости, м3/ч");
|
.HasComment("Расход доливаемой жидкости, м3/ч");
|
||||||
|
|
||||||
b.Property<float>("GasIndicationsCH4")
|
b.Property<float>("GasIndicationsCH4")
|
||||||
@ -7399,7 +7399,7 @@ namespace AsbCloudDb.Migrations
|
|||||||
|
|
||||||
b.Property<float>("HookLoad")
|
b.Property<float>("HookLoad")
|
||||||
.HasColumnType("real")
|
.HasColumnType("real")
|
||||||
.HasColumnName("hook_weight")
|
.HasColumnName("hook_load")
|
||||||
.HasComment("Вес на крюке");
|
.HasComment("Вес на крюке");
|
||||||
|
|
||||||
b.Property<int?>("IdUser")
|
b.Property<int?>("IdUser")
|
||||||
@ -7409,22 +7409,22 @@ namespace AsbCloudDb.Migrations
|
|||||||
|
|
||||||
b.Property<float>("MudDensity")
|
b.Property<float>("MudDensity")
|
||||||
.HasColumnType("real")
|
.HasColumnType("real")
|
||||||
.HasColumnName("liquid_density")
|
.HasColumnName("mud_density")
|
||||||
.HasComment("Плотность жидкости в ДЕ, г/см3");
|
.HasComment("Плотность жидкости в ДЕ, г/см3");
|
||||||
|
|
||||||
b.Property<float>("MudTemperatureInBlowOutPreventor")
|
b.Property<float>("MudTemperatureInBlowOutPreventor")
|
||||||
.HasColumnType("real")
|
.HasColumnType("real")
|
||||||
.HasColumnName("liquid_branch_brace_temperature")
|
.HasColumnName("mud_temperature_in_blow_out_preventor")
|
||||||
.HasComment("Температура жидкости в отводе крестовины ПВО, С");
|
.HasComment("Температура жидкости в отводе крестовины ПВО, С");
|
||||||
|
|
||||||
b.Property<float>("TripInOutSpeed")
|
b.Property<float>("TripInOutSpeed")
|
||||||
.HasColumnType("real")
|
.HasColumnType("real")
|
||||||
.HasColumnName("up_and_down_operations_speed")
|
.HasColumnName("trip_in_out_speed")
|
||||||
.HasComment("Скорость СПО, м/с");
|
.HasComment("Скорость СПО, м/с");
|
||||||
|
|
||||||
b.Property<float>("TripTankVolume")
|
b.Property<float>("TripTankVolume")
|
||||||
.HasColumnType("real")
|
.HasColumnType("real")
|
||||||
.HasColumnName("slagging_tank_volume")
|
.HasColumnName("trip_tank_volume")
|
||||||
.HasComment("Объем доливной емкости (ДЕ), м3");
|
.HasComment("Объем доливной емкости (ДЕ), м3");
|
||||||
|
|
||||||
b.Property<float>("WellLevel")
|
b.Property<float>("WellLevel")
|
||||||
|
@ -17,31 +17,31 @@ namespace AsbCloudDb.Model
|
|||||||
[Column("date", TypeName = "timestamp with time zone"), Comment("'2021-10-19 18:23:54+05'")]
|
[Column("date", TypeName = "timestamp with time zone"), Comment("'2021-10-19 18:23:54+05'")]
|
||||||
public DateTimeOffset DateTime { get; set; }
|
public DateTimeOffset DateTime { get; set; }
|
||||||
|
|
||||||
[Column("tool_depth"), Comment("Глубина инструмента, м ")]
|
[Column("bit_depth"), Comment("Глубина инструмента, м ")]
|
||||||
public float BitDepth { get; set; }
|
public float BitDepth { get; set; }
|
||||||
|
|
||||||
[Column("hook_block_depth"), Comment("Высота крюкоблока, м")]
|
[Column("block_position"), Comment("Высота крюкоблока, м")]
|
||||||
public float BlockPosition { get; set; }
|
public float BlockPosition { get; set; }
|
||||||
|
|
||||||
[Column("hook_weight"), Comment("Вес на крюке")]
|
[Column("hook_load"), Comment("Вес на крюке")]
|
||||||
public float HookLoad { get; set; }
|
public float HookLoad { get; set; }
|
||||||
|
|
||||||
[Column("up_and_down_operations_speed"), Comment("Скорость СПО, м/с")]
|
[Column("trip_in_out_speed"), Comment("Скорость СПО, м/с")]
|
||||||
public float TripInOutSpeed { get; set; }
|
public float TripInOutSpeed { get; set; }
|
||||||
|
|
||||||
[Column("slagging_tank_volume"), Comment("Объем доливной емкости (ДЕ), м3")]
|
[Column("trip_tank_volume"), Comment("Объем доливной емкости (ДЕ), м3")]
|
||||||
public float TripTankVolume { get; set; }
|
public float TripTankVolume { get; set; }
|
||||||
|
|
||||||
[Column("liquid_density"), Comment("Плотность жидкости в ДЕ, г/см3")]
|
[Column("mud_density"), Comment("Плотность жидкости в ДЕ, г/см3")]
|
||||||
public float MudDensity { get; set; }
|
public float MudDensity { get; set; }
|
||||||
|
|
||||||
[Column("liquid_rate"), Comment("Расход доливаемой жидкости, м3/ч")]
|
[Column("flow_rate"), Comment("Расход доливаемой жидкости, м3/ч")]
|
||||||
public float FlowRate { get; set; }
|
public float FlowRate { get; set; }
|
||||||
|
|
||||||
[Column("well_level"), Comment("Уровень в скважине (по эхолоту), м")]
|
[Column("well_level"), Comment("Уровень в скважине (по эхолоту), м")]
|
||||||
public float WellLevel { get; set; }
|
public float WellLevel { get; set; }
|
||||||
|
|
||||||
[Column("liquid_branch_brace_temperature"), Comment("Температура жидкости в отводе крестовины ПВО, С")]
|
[Column("mud_temperature_in_blow_out_preventor"), Comment("Температура жидкости в отводе крестовины ПВО, С")]
|
||||||
public float MudTemperatureInBlowOutPreventor { get; set; }
|
public float MudTemperatureInBlowOutPreventor { get; set; }
|
||||||
|
|
||||||
[Column("gas_indications_CH4"), Comment("Газопоказания (СН4), %")]
|
[Column("gas_indications_CH4"), Comment("Газопоказания (СН4), %")]
|
||||||
|
@ -7,10 +7,10 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ConnectionStrings": {
|
"ConnectionStrings": {
|
||||||
"DefaultConnection": "Host=localhost;Database=postgres;Username=postgres;Password=q;Persist Security Info=True",
|
"DefaultConnection": "Host=localhost;Database=tkrs;Username=postgres;Password=q;Persist Security Info=True",
|
||||||
"DebugConnection": "Host=localhost;Database=postgres;Username=postgres;Password=q;Persist Security Info=True;Include Error Detail=True",
|
"DebugConnection": "Host=localhost;Database=tkrs;Username=postgres;Password=q;Persist Security Info=True;Include Error Detail=True",
|
||||||
"TestConnection": "Host=localhost;Database=test;Username=postgres;Password=q;Persist Security Info=True;Include Error Detail=True",
|
"TestConnection": "Host=localhost;Database=tkrs;Username=postgres;Password=q;Persist Security Info=True;Include Error Detail=True",
|
||||||
"LocalConnection": "Host=localhost;Database=postgres;Username=postgres;Password=q;Persist Security Info=True"
|
"LocalConnection": "Host=localhost;Database=tkrs;Username=postgres;Password=q;Persist Security Info=True"
|
||||||
},
|
},
|
||||||
"AllowedHosts": "*",
|
"AllowedHosts": "*",
|
||||||
"ContentPath": "../data",
|
"ContentPath": "../data",
|
||||||
|
Loading…
Reference in New Issue
Block a user