临时提交

This commit is contained in:
2025-07-22 22:01:44 +08:00
parent fe3045c2d2
commit b0d5db3626
4 changed files with 135 additions and 12 deletions

View File

@@ -1,14 +1,51 @@
using SqlSugar;
using DMS.Core.Enums;
using SqlSugar;
using SqlSugar.DbConvert;
namespace DMS.Infrastructure.Entities;
/// <summary>
/// 变量表
/// </summary>
public class DbVariableTable
{
/// <summary>
/// 主键ID
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
/// <summary>
/// 变量表名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 描述
/// </summary>
[SugarColumn(IsNullable = true)]
public string Description { get; set; }
/// <summary>
/// 是否激活
/// </summary>
public bool IsActive { get; set; }
/// <summary>
/// 设备ID
/// </summary>
public int DeviceId { get; set; }
public int Protocol { get; set; } // 对应 ProtocolType 枚举
/// <summary>
/// 关联的设备
/// </summary>
[SugarColumn(IsIgnore = true)]
public DbDevice Device { get; set; }
/// <summary>
/// 协议类型
/// </summary>
[SugarColumn(ColumnDataType="varchar(20)",SqlParameterDbType=typeof(EnumToStringConvert))]
public ProtocolType Protocol { get; set; } // 对应 ProtocolType 枚举
/// <summary>
/// 此设备包含的变量表集合。
/// </summary>
[SugarColumn(IsIgnore = true)]
public List<DbVariable> Variables { get; set; } = new();
}