Files
parr_api/PARR.API/Contracts/V1/Responses/JobResponse.cs

124 lines
3.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace PARR.API.Contracts.V1.Responses
{
public class JobBaseResponse
{
public Guid Id { get; set; }
public required string Name { get; set; }
public int? MinValueRelationships { get; set; }
public int? MaxValueRelationships { get; set; }
public bool? isParentRelationships { get; set; }
public required string TemplateNameMask { get; set; }
public required string WorkName { get; set; }
public required string WorkGroupMask { get; set; }
public required string ResponseAreaMask { get; set; }
}
public class JobResponse : JobBaseResponse
{
public TnkResponse? Tnk { get; set; }
public JobGroupBaseResponse? Group { get; set; }
public int? TemplatesCount { get; set; }
public List<UnitFilterResponse>? UnitFilters { get; set; }
public JobAutoControlResponse? AutoControl { get; set; }
#region Статистика Old
//public TemplateStats? TemplateStatistics { get; set; }
//public ScheduleStats? ScheduleStatistics { get; set; }
#endregion
}
public class UnitFilterResponse
{
public required Guid Id { get; set; }
public required string UnitFilterMask { get; set; }
public List<FieldFilterResponse>? FieldFilters { get; set; }
public List<RelationshipFilterResponse>? RelationshipFilters { get; set; }
}
public class FieldFilterResponse
{
public required Guid Id { get; set; }
public required FieldResponse Field { get; set; }
public string? ValueMask { get; set; }
public bool IsInverse { get; set; }
}
public class RelationshipFilterResponse
{
public required FieldResponse Field { get; set; }
public bool? IsParent { get; set; }
public string? ValueMask { get; set; }
public bool? IsFullMatch { get; set; }
public bool? IsInverse { get; set; }
}
public class TemplateStats
{
/// <summary>
/// Активированных шаблонов
/// </summary>
public int Activated { get; set; }
/// <summary>
/// Синхронизировано шаблонов (TaskStatus = 30/Ok)
/// </summary>
public int Synchronized { get; set; }
/// <summary>
/// Ошибок синхронизации (RobotStatus = 33/Error)
/// </summary>
public int Errors { get; set; }
}
public class ScheduleStats
{
/// <summary>
/// Активированных шаблонов
/// </summary>
public int Activated { get; set; }
/// <summary>
/// Синхронизировано шаблонов (TaskStatus = 30/Ok)
/// </summary>
public int Synchronized { get; set; }
/// <summary>
/// Ошибок синхронизации (RobotStatus = 33/Error)
/// </summary>
public int Errors { get; set; }
}
}