feat(aihit): AIHITLoadWorker + AIHITSyncWorker

This commit is contained in:
Mikhail Kuznetsov
2024-02-05 14:45:09 +10:00
parent 2ee7ad9dd4
commit 3d71f4cbe9
24 changed files with 826 additions and 19 deletions

View File

@@ -3,8 +3,15 @@
/// <summary>
/// Модель в MQ, данные из АИХИТ
/// </summary>
internal class AihitDataMq
public class AihitDataMq
{
//TODO:данные из АИХИТ
public required string EK { get; set; }
public string? IP { get; set; }
public string? DBType { get; set; }
public string? APPType { get; set; }
public string? OSType { get; set; }
public string? WorkGroup { get; set; }
public required string Status { get; set; }
public required string ResponseArea { get; set; }
}
}