feat(aihitMainLoader): увеличено число обрабатываемых полей

This commit is contained in:
Mikhail Kuznetsov
2025-06-18 15:36:48 +10:00
parent 504a17b301
commit 266a625457

View File

@@ -52,6 +52,12 @@ namespace PARR.AIHITMainLoader.Models
[Column("Сервер БИР")] [Column("Сервер БИР")]
public string? BIRServerType { get; set; } public string? BIRServerType { get; set; }
[Column("АКТИВЕН")]
public string? Active { get; set; }
[Column("НЕУНИКАЛЬНЫЙ_ЭК")]
public string? IsNotUnique { get; set; }
public AihitMainDataMq ToMainData() public AihitMainDataMq ToMainData()
{ {
@@ -74,6 +80,8 @@ namespace PARR.AIHITMainLoader.Models
{"РГ_смены", ShiftWorkGroup }, {"РГ_смены", ShiftWorkGroup },
{"Сервер СПД", SPDServerType }, {"Сервер СПД", SPDServerType },
{"Сервер БИР", BIRServerType }, {"Сервер БИР", BIRServerType },
{"АКТИВЕН", Active },
{"НЕУНИКАЛЬНЫЙ_ЭК", IsNotUnique },
} }
}; };
} }