2025-12-18 16:48:48 +10:00
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
2026-04-15 09:35:03 +10:00
|
|
|
|
using PARR.Domain.Constants;
|
2025-12-18 16:48:48 +10:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
|
2026-04-30 10:35:31 +10:00
|
|
|
|
namespace PARR.Domain.Entities.Unit
|
2025-12-18 16:48:48 +10:00
|
|
|
|
{
|
2026-04-15 09:35:03 +10:00
|
|
|
|
[Table("RegionalEkPtkGroups", Schema = DatabaseSchemas.Unit)]
|
2025-12-18 16:48:48 +10:00
|
|
|
|
[Comment("Таблица - региональные группы ПТК")]
|
|
|
|
|
|
public class UnitRegionalEkPtkGroup
|
|
|
|
|
|
{
|
|
|
|
|
|
[Key]
|
|
|
|
|
|
public Guid FieldValueId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[ForeignKey(nameof(FieldValueId))]
|
|
|
|
|
|
public UnitFieldValue? FieldValue { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|