DD.WellWorkover.Cloud/AsbCloudDb/Model/GTR/WitsInt.cs

18 lines
404 B
C#
Raw Normal View History

2023-03-28 01:05:15 +05:00
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; }
}
}