Files
parr_api/PARR.AIHITRelationshipsSyncer/Models/AihitData.cs

27 lines
801 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}