using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations.Schema; namespace AsbCloudDb.Model.GTR { [Table("t_wits_int"), Comment("таблица данных ГТИ с типом значения int16 int32")] public class WitsInt : WitsBase { [Column("Value", TypeName = "bigint")] public int? Value { get; set; } } }