forked from ddrilling/AsbCloudServer
9 lines
309 B
C#
9 lines
309 B
C#
using Microsoft.EntityFrameworkCore;
|
||
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
||
namespace AsbCloudDb.Model.GTR
|
||
{
|
||
[Table("t_wits_int"), Comment("таблица данных ГТИ с типом значения int16 int32")]
|
||
public class WitsInt : WitsItemBase<int>, ITelemetryData { }
|
||
}
|