27 lines
801 B
C#
27 lines
801 B
C#
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; }
|
||
}
|
||
}
|