feat(core): WorkloadService - реализация логики формирования отчета
This commit is contained in:
31
PARR.Domain/Enums/WorkloadReportType.cs
Normal file
31
PARR.Domain/Enums/WorkloadReportType.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace PARR.Domain.Enums
|
||||
{
|
||||
/// <summary>
|
||||
/// Тип отчета о загруженности
|
||||
/// </summary>
|
||||
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||
public enum WorkloadReportType
|
||||
{
|
||||
/// <summary>
|
||||
/// Отчет по всем ЗО
|
||||
/// </summary>
|
||||
ResponseAreaAll = 0,
|
||||
|
||||
/// <summary>
|
||||
/// Отчет по одной ЗО
|
||||
/// </summary>
|
||||
ResponseAreaItem = 1,
|
||||
|
||||
/// <summary>
|
||||
/// Отчет по всем РГ
|
||||
/// </summary>
|
||||
WorkGroupAll = 2,
|
||||
|
||||
/// <summary>
|
||||
/// Отчет по одной РГ
|
||||
/// </summary>
|
||||
WorkGroupItem = 3
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user