forked from ddrilling/AsbCloudServer
13 lines
356 B
C#
13 lines
356 B
C#
|
using Microsoft.EntityFrameworkCore;
|
|||
|
using System.ComponentModel.DataAnnotations.Schema;
|
|||
|
|
|||
|
namespace AsbCloudDb.Model.GTR
|
|||
|
{
|
|||
|
[Table("t_wits_int"), Comment("таблица данных ГТИ с типом значения float")]
|
|||
|
public class WitsFloat : WitsBase
|
|||
|
{
|
|||
|
[Column("value")]
|
|||
|
public float? Value { get; set; }
|
|||
|
}
|
|||
|
}
|