2024-01-12 08:54:55 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
|
|
|
|
namespace HT.Cloud.Domain.SystemSecurity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创 建:cdl
|
|
|
|
|
/// 日 期:2024-01-04 10:56
|
|
|
|
|
/// 描 述:IO模块实体类
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("HT_REALTIME_IOGROUP")]
|
|
|
|
|
public class RealTimeIOGroupEntity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName="ID", ColumnDescription = "",ColumnDataType = "int(10)",IsPrimaryKey = true)]
|
|
|
|
|
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="IOIndex", ColumnDescription = "IO序号",ColumnDataType = "int(10)", IsNullable = true)]
|
|
|
|
|
public int? IOIndex { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// IOSLOT
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName="IOSlot", ColumnDescription = "IOSLOT",ColumnDataType = "int(10)", IsNullable = true)]
|
|
|
|
|
public int? IOSlot { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// IO型号
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName="IOModel", ColumnDescription = "IO型号",ColumnDataType = "varchar(255)", IsNullable = true)]
|
|
|
|
|
public string IOModel { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// IO位数
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName="IOBit", ColumnDescription = "IO位数",ColumnDataType = "varchar(255)", IsNullable = true)]
|
|
|
|
|
public string IOBit { get; set; }
|
2024-07-10 16:08:09 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// IO位数
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "IOType", ColumnDescription = "数字量或模拟量", ColumnDataType = "varchar(128)", IsNullable = true)]
|
|
|
|
|
public string IOType { get; set; }
|
|
|
|
|
}
|
2024-01-12 08:54:55 +08:00
|
|
|
|
}
|