Day2 fix: recreate device_manager entities and boilerplate

This commit is contained in:
2026-05-17 01:49:03 +08:00
parent 1e12cdd35c
commit 8c007952e1
54 changed files with 497 additions and 234 deletions

View File

@@ -0,0 +1,17 @@
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; }
}
}