forked from ddrilling/AsbCloudServer
18 lines
404 B
C#
18 lines
404 B
C#
|
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; }
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
}
|