可视化修改
Some checks failed
CodeQL / Analyze (csharp) (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled

This commit is contained in:
dell
2025-10-17 09:15:31 +08:00
parent 84800d2d6e
commit c15babafd3
49 changed files with 649 additions and 40 deletions

View File

@ -0,0 +1,75 @@
using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace HT.Cloud.Domain.DevicesManage
{
/// <summary>
///
///</summary>
[SugarTable("HT_Debug_Tag")]
[TenantAttribute("1")]
public class HTDebugTag
{
/// <summary>
/// 备 注:
/// 默认值:
///</summary>
[SugarColumn(ColumnName="TagID" ,IsPrimaryKey = true) ]
public int TagID { get; set; }
/// <summary>
/// 备 注:
/// 默认值:
///</summary>
[SugarColumn(ColumnName="TypeID" ) ]
public int TypeID { get; set; }
/// <summary>
/// 备 注:
/// 默认值:
///</summary>
[SugarColumn(ColumnName="TagName" ) ]
public string? TagName { get; set; }
/// <summary>
/// 备 注:
/// 默认值:
///</summary>
[SugarColumn(ColumnName="DataType" ) ]
public byte? DataType { get; set; }
/// <summary>
/// 备 注:
/// 默认值:
///</summary>
[SugarColumn(ColumnName="Description" ) ]
public string? Description { get; set; }
/// <summary>
/// 备 注:
/// 默认值:
///</summary>
[SugarColumn(ColumnName="SysType" ) ]
public string? SysType { get; set; }
/// <summary>
/// 备 注:
/// 默认值:
///</summary>
[SugarColumn(ColumnName="GroType" ) ]
public string? GroType { get; set; }
/// <summary>
/// 备 注:
/// 默认值:
///</summary>
[SugarColumn(ColumnName="GroName" ) ]
public string? GroName { get; set; }
}
}