feat(api): JobGroupResponse, TemplateResponse - отображение настроек автораспределения

This commit is contained in:
Mikhail Trubnikov
2026-01-22 14:05:48 +10:00
parent 1845154b26
commit 9e84ef8029
7 changed files with 60 additions and 5 deletions

View File

@@ -25,7 +25,10 @@
/// </summary>
public FieldResponse? GroupingUnitField { get; set; }
// public bool IsAutoDistributionEnabled { get; set; }
/// <summary>
/// Включено автораспределение
/// </summary>
public bool IsAutoDistributionEnabled { get; set; }
// public bool IsAgent { get; set; }
@@ -55,6 +58,11 @@
/// </summary>
public ScheduleExcludeTypeCalendarResponse? ScheduleExcludeTypeCalendar { get; set; }
/// <summary>
/// Настройки автораспределения
/// </summary>
public JobGroupDistributionConfigResponse? DistributionConfig { get; set; }
}
public class JobGroupScheduleResponse
@@ -65,4 +73,6 @@
public List<EsppScheduleValResponse>? Values { get; set; }
}
}