feat(aihitRelationshipsSyncer): Реализована логика синхронизации связей между Unit+CI/CD
This commit is contained in:
26
PARR.AIHITRelationshipsSyncer/Models/AihitData.cs
Normal file
26
PARR.AIHITRelationshipsSyncer/Models/AihitData.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace PARR.AIHITRelationshipsSyncer.Models
|
||||
{
|
||||
[PrimaryKey(nameof(EKFindCode), nameof(ChildEk))]
|
||||
public class AihitData
|
||||
{
|
||||
[Column("КОД_ПОИСКА_ЭК")]
|
||||
public string? EKFindCode { get; set; }
|
||||
|
||||
//[Column("СТАТУС")]
|
||||
//public string? Status { get; set; }
|
||||
|
||||
//[Column("ЗОНА_ОТВЕТСТВЕННОСТИ")]
|
||||
//public string? ResponseArea { get; set; }
|
||||
|
||||
//[Column("ПОДКАТЕГОРИЯ_ЭК")]
|
||||
//public string? EKSubCategory { get; set; }
|
||||
|
||||
//[Column("ТИП_ЭК")]
|
||||
//public string? EKType { get; set; }
|
||||
[Column("Дочерний ЭК")]
|
||||
public string? ChildEk { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user