Files
HTCloud/HT.Cloud.Domain/Entity/DevicesManage/MetaSystemEntity.cs
dell fbc097d131 1、陕西建龙打包版本
2、drawio导入SFC
3、多系统并存修改
2025-02-19 16:06:08 +08:00

39 lines
1.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}