1、陕西建龙打包版本

2、drawio导入SFC
3、多系统并存修改
This commit is contained in:
dell
2025-02-19 16:06:08 +08:00
parent 4071d8f337
commit fbc097d131
73 changed files with 3874 additions and 13074 deletions

View File

@ -0,0 +1,38 @@
using System;
using System.ComponentModel.DataAnnotations;
using SqlSugar;
namespace HT.Cloud.Domain.DevicesManage
{
/// <summary>
/// 创 建cdl
/// 日 期2023-03-02 15:56
/// 描 述:变量组信息表实体类
/// </summary>
[SugarTable("Meta_System")]
[TenantAttribute("1")]
public class MetaSystemEntity
{
/// <summary>
///
/// </summary>
[SugarColumn(ColumnName= "SystemID", ColumnDescription = "",ColumnDataType = "smallint(5)",IsPrimaryKey = true)]
public int SystemID { get; set; }
/// <summary>
///
/// </summary>
[SugarColumn(ColumnName= "SystemType", ColumnDescription = "",ColumnDataType = "int(10)", IsNullable = true)]
public int? SystemType { get; set; }
/// <summary>
///
/// </summary>
[SugarColumn(ColumnName = "SystemName", ColumnDescription = "", ColumnDataType = "nvarchar(64)", IsNullable = true)]
public string SystemName { get; set; }
/// <summary>
///
/// </summary>
[SugarColumn(ColumnName = "SystemDescription", ColumnDescription = "", ColumnDataType = "nvarchar(128)")]
public string SystemDescription { get; set; }
}
}