Files
HTCloud/HT.Cloud.Domain/Entity/SystemSecurity/RealTimeIOInfoEntity.cs
2024-01-12 08:54:55 +08:00

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