feat(dal): Таблицы для расписания ЕСПП
This commit is contained in:
@@ -28,6 +28,16 @@ namespace PARR.DAL.Models
|
||||
|
||||
public required string Solution { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Расписание: Время создания наряда (чч:мм:сс)
|
||||
/// </summary>
|
||||
public TimeSpan ScheduleGenerationTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Расписание: Следующее срабатывание
|
||||
/// </summary>
|
||||
public DateOnly ScheduleStartDate { get; set; }
|
||||
|
||||
[ForeignKey(nameof(WorkId))]
|
||||
public Work? Work { get; set; }
|
||||
|
||||
@@ -35,5 +45,7 @@ namespace PARR.DAL.Models
|
||||
public Application? Application { get; set; }
|
||||
|
||||
public ICollection<Template> Templates { get; set; } = new HashSet<Template>();
|
||||
|
||||
public ICollection<EsppSchValue> EsppSchValues { get; set; } = new HashSet<EsppSchValue>();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user