feat(api): Актуализация JobResponse под фронт; Template метод GetAll ищет по Job а не JobGroup

This commit is contained in:
Mikhail Kuznetsov
2025-09-10 10:40:12 +10:00
parent aa31af8027
commit d4607f8547
4 changed files with 18 additions and 10 deletions

View File

@@ -14,8 +14,8 @@
/// <summary>
/// Поиск по ИД Задания (JobGroupId)
/// Поиск по ИД Задания (JobId)
/// </summary>
public Guid? JobGroupId { get; set; }
public Guid? JobId { get; set; }
}
}

View File

@@ -35,6 +35,8 @@
public class UnitFilterResponse
{
public required Guid Id { get; set; }
public required string UnitFilterMask { get; set; }
public List<FieldFilterResponse>? FieldFilters { get; set; }
@@ -46,6 +48,8 @@
public class FieldFilterResponse
{
public required Guid Id { get; set; }
public required FieldResponse Field { get; set; }
public string? ValueMask { get; set; }