2026-01-30 10:40:55 +10:00
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
2026-04-15 09:35:03 +10:00
|
|
|
|
using PARR.Domain.Constants;
|
2026-01-30 10:40:55 +10:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
|
2026-04-30 10:35:31 +10:00
|
|
|
|
namespace PARR.Domain.Entities.Schedule
|
2026-01-30 10:40:55 +10:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Расписание в ЕСПП. Смещение часового пояса относительно МСК для зоны ответственности рабочей группы
|
|
|
|
|
|
/// </summary>
|
2026-04-15 09:35:03 +10:00
|
|
|
|
[Table("ResponseAreaTimeOffsets", Schema = DatabaseSchemas.Schedule)]
|
2026-01-30 10:40:55 +10:00
|
|
|
|
[Comment("Расписание в ЕСПП. Смещение часового пояса относительно МСК для зоны ответственности рабочей группы")]
|
|
|
|
|
|
public class ScheduleResponseAreaTimeOffset
|
|
|
|
|
|
{
|
|
|
|
|
|
[Key]
|
|
|
|
|
|
public required string ResponseArea { get; set; }
|
|
|
|
|
|
|
2026-02-03 16:15:19 +10:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// ЕСПП значение
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public required string EsppValue { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Смещение относительно UTC
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public required TimeSpan UtcTimeOffset { get; set; }
|
2026-01-30 10:40:55 +10:00
|
|
|
|
}
|
|
|
|
|
|
}
|