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

14 lines
408 B
C#

using SqlSugar;
namespace DMS.Infrastructure.Entities;
public class DbVariableTable
{
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public bool IsActive { get; set; }
public int DeviceId { get; set; }
public int Protocol { get; set; } // 对应 ProtocolType 枚举
}