using SqlSugar; using VolPro.Entity.SystemModels; namespace VolPro.Entity.DomainModels { [Entity(TableCnName="数据归档",TableName="iot_devicedata",DBServer="ServiceDbContext")] public partial class iot_devicedata : ServiceEntity { [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int DataId { get; set; } public int? DeviceId { get; set; } public string? AdapterCode { get; set; } public int? PointIndex { get; set; } public double? Value { get; set; } public DateTime? UpdateTime { get; set; } public DateTime? CreateDate { get; set; } } }