39 lines
1.2 KiB
C#
39 lines
1.2 KiB
C#
![]() |
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; }
|
|||
|
}
|
|||
|
}
|