初版IO监控
This commit is contained in:
@ -0,0 +1,36 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using SqlSugar;
|
||||
|
||||
namespace HT.Cloud.Domain.SystemSecurity
|
||||
{
|
||||
/// <summary>
|
||||
/// 创 建:cdl
|
||||
/// 日 期:2024-01-04 10:53
|
||||
/// 描 述:IO信息实体类
|
||||
/// </summary>
|
||||
[SugarTable("HT_REALTIME_IOINFO")]
|
||||
public class RealTimeIOInfoEntity
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName="ID", ColumnDescription = "",ColumnDataType = "int(10)")]
|
||||
public int ID { get; set; }
|
||||
/// <summary>
|
||||
/// ioid
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName="IOID", ColumnDescription = "ioid",ColumnDataType = "int(10)", IsNullable = true)]
|
||||
public int? IOID { get; set; }
|
||||
/// <summary>
|
||||
/// IO符号名称
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName="IONAME", ColumnDescription = "IO符号名称",ColumnDataType = "varchar(128)", IsNullable = true)]
|
||||
public string IONAME { get; set; }
|
||||
/// <summary>
|
||||
/// IO功能名称
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName="IODESCRIPTION", ColumnDescription = "IO功能名称",ColumnDataType = "varchar(128)", IsNullable = true)]
|
||||
public string IODESCRIPTION { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user