Files
DMS/DMS.Infrastructure/Entities/DbVariableHistory.cs

14 lines
350 B
C#
Raw Normal View History

using SqlSugar;
namespace DMS.Infrastructure.Entities;
2025-07-21 22:02:42 +08:00
public class DbVariableHistory
{
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public long Id { get; set; }
public int VariableId { get; set; }
public string Value { get; set; }
public double NumericValue { get; set; }
public DateTime Timestamp { get; set; }
}