feat(esppApi): при выполнении наряда, добавлены поля "ЭК робота" и "Код мероприятия РРО"

This commit is contained in:
Mikhail Trubnikov
2023-12-07 11:19:08 +10:00
parent b8e48859ae
commit 0fb8e5d1b6
7 changed files with 61 additions and 27 deletions

View File

@@ -26,14 +26,39 @@ namespace PARR.EsppApi.Requests
}
}
/// <summary>
/// Номер запроса
/// </summary>
public required string recordid { get; set; }
/// <summary>
/// Статус
/// </summary>
public required string status { get; set; }
/// <summary>
/// Исполнитель
/// </summary>
public required string assignee { get; set; }
/// <summary>
/// Решение
/// </summary>
public required string resolution { get; set; }
/// <summary>
/// Код закрытия
/// </summary>
public string resolutionCode { get; private set; }
/// <summary>
/// ЭК робота
/// </summary>
public string rzdKeRobot { get; set; } = string.Empty;
/// <summary>
/// Код мероприятия по PPO
/// </summary>
public string rzdEventCode { get; set; } = string.Empty;
}
}