Day2 fix: recreate device_manager entities and boilerplate
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user