Загрузка сырых данных из АИХ ИТ

This commit is contained in:
Mikhail Kuznetsov
2023-08-14 11:38:59 +10:00
parent 23b9d5da56
commit e16eecaeba
5 changed files with 128 additions and 84 deletions

View File

@@ -52,8 +52,8 @@ namespace PARR.DAL.Migrations
b.Property<string>("Company")
.HasColumnType("text");
b.Property<DateTime?>("CreateTime")
.HasColumnType("timestamp with time zone");
b.Property<string>("CreateTime")
.HasColumnType("text");
b.Property<string>("DBType")
.HasColumnType("text");
@@ -82,8 +82,8 @@ namespace PARR.DAL.Migrations
b.Property<string>("EKType")
.HasColumnType("text");
b.Property<DateTime?>("EndExplotationDate")
.HasColumnType("timestamp with time zone");
b.Property<string>("EndExplotationDate")
.HasColumnType("text");
b.Property<string>("FullName")
.HasColumnType("text");
@@ -124,8 +124,8 @@ namespace PARR.DAL.Migrations
b.Property<string>("OldEKFindCode")
.HasColumnType("text");
b.Property<DateTime?>("PlannedTimeToRepair")
.HasColumnType("timestamp with time zone");
b.Property<string>("PlannedTimeToRepair")
.HasColumnType("text");
b.Property<string>("Prescription")
.HasColumnType("text");
@@ -148,14 +148,14 @@ namespace PARR.DAL.Migrations
b.Property<string>("ShortName")
.HasColumnType("text");
b.Property<DateTime?>("StartExplotationDate")
.HasColumnType("timestamp with time zone");
b.Property<string>("StartExplotationDate")
.HasColumnType("text");
b.Property<string>("Status")
.HasColumnType("text");
b.Property<DateTime?>("SysModTime")
.HasColumnType("timestamp with time zone");
b.Property<string>("SysModTime")
.HasColumnType("text");
b.Property<string>("SysModUser")
.HasColumnType("text");
@@ -217,7 +217,7 @@ namespace PARR.DAL.Migrations
Description = "Зона ответственности",
Group = "ResponsibleArea",
Name = "ZAB",
Value = "94 - ЗАБ"
Value = "94-ЗАБ"
},
new
{
@@ -227,6 +227,15 @@ namespace PARR.DAL.Migrations
Group = "ResponsibleArea",
Name = "DVS",
Value = "96-ДВС"
},
new
{
Id = new Guid("77c73c0a-8e4d-4676-b6e2-6a112f20e346"),
DateCreated = new DateTimeOffset(new DateTime(2023, 5, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 0, 0, 0, 0)),
Description = "Статус актуальных ЭК",
Group = "Status",
Name = "Exploitation",
Value = "3-В эксплуатации"
});
});