feat(dal): добавлены таблицы JobAutoControls, JobAutoCOntrolInEkStatuses, JobEkMasks. Сервисы.

This commit is contained in:
Mikhail Trubnikov
2024-09-09 10:08:07 +10:00
parent 2a774bc413
commit c74086412b
14 changed files with 3507 additions and 11 deletions

View File

@@ -47,9 +47,11 @@ namespace PARR.DAL.Models
}
}
/// <summary>
/// Краткое описание
/// </summary>
public required string ShortDescription { get; set; }
//public required string FullDescription { get; set; }
private string _fullDescription = string.Empty;
public required string FullDescription
@@ -67,17 +69,11 @@ namespace PARR.DAL.Models
}
}
/// <summary>
/// Решение
/// </summary>
public required string Solution { get; set; }
///// <summary>
///// Время последнего запуска скрипта/генерации наряда
///// </summary>
//public DateTimeOffset? LastRun { get; set; }
///// <summary>
///// Время следующего запуска скрипта/генерации наряда
///// </summary>
//public DateTimeOffset NextRun { get; set; }
/// <summary>
/// Включить автораспределение
@@ -120,5 +116,7 @@ namespace PARR.DAL.Models
public ICollection<EsppSchValue> EsppSchValues { get; set; } = new HashSet<EsppSchValue>();
public ICollection<AppInWorkInWorkGroup> WorkGroups { get; set; } = new HashSet<AppInWorkInWorkGroup>();
public JobAutoControl? JobAutoControl { get; set; }
}
}