2025-07-16 20:54:38 +08:00
|
|
|
using SqlSugar;
|
|
|
|
|
|
2025-07-18 22:21:16 +08:00
|
|
|
namespace DMS.Infrastructure.Entities;
|
2025-07-16 20:54:38 +08:00
|
|
|
|
2025-07-21 22:02:42 +08:00
|
|
|
|
2025-07-17 20:13:21 +08:00
|
|
|
public class DbVariableHistory
|
2025-07-16 20:54:38 +08:00
|
|
|
{
|
|
|
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
2025-07-21 14:35:17 +08:00
|
|
|
public long Id { get; set; }
|
2025-07-17 20:13:21 +08:00
|
|
|
public int VariableId { get; set; }
|
2025-07-21 14:35:17 +08:00
|
|
|
public string Value { get; set; }
|
|
|
|
|
public DateTime Timestamp { get; set; }
|
2025-07-16 20:54:38 +08:00
|
|
|
}
|