Files
DMS/DMS.Infrastructure/Entities/DbVariableHistory.cs
2025-07-21 22:02:42 +08:00

13 lines
305 B
C#

using SqlSugar;
namespace DMS.Infrastructure.Entities;
public class DbVariableHistory
{
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public long Id { get; set; }
public int VariableId { get; set; }
public string Value { get; set; }
public DateTime Timestamp { get; set; }
}