feat(dal): Создана таблица JobRelationshipFilter для хранения фильров атрибутов связей между ЭК

This commit is contained in:
Mikhail Kuznetsov
2025-08-01 17:14:39 +10:00
parent e3b9392d84
commit 46a96c666e
8 changed files with 4012 additions and 6 deletions

View File

@@ -1,6 +1,7 @@
using Microsoft.EntityFrameworkCore;
using PARR.DAL.Context;
using PARR.DAL.Models.Base;
using PARR.DAL.Models.Job;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
@@ -49,5 +50,6 @@ namespace PARR.DAL.Models.Unit
public ICollection<UnitFieldInUnitFieldValue> FieldValues { get; set; } = new HashSet<UnitFieldInUnitFieldValue>();
public ICollection<JobRelationshipFilter> RelationshipFilters { get; set; } = new HashSet<JobRelationshipFilter>();
}
}