新兴铸管
This commit is contained in:
@ -0,0 +1,56 @@
|
||||
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_DEVNETWORK")]
|
||||
public class RealTimeDevNetWorkEntity
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName="ID", ColumnDescription = "",ColumnDataType = "int",IsPrimaryKey = true)]
|
||||
public int ID { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName= "DeviceID", ColumnDescription = "",ColumnDataType = "int", IsNullable = true)]
|
||||
public int? DeviceID { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName= "DeviceIOGroupID", ColumnDescription = "",ColumnDataType = "int", IsNullable = true)]
|
||||
public int? DeviceIOGroupID { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName= "DeviceName", ColumnDescription = "",ColumnDataType = "varchar(128)", IsNullable = true)]
|
||||
public string DeviceName { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName= "DeviceIP", ColumnDescription = "",ColumnDataType = "varchar(128)", IsNullable = true)]
|
||||
public string DeviceIP { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName= "DeviceNetWorkStatus", ColumnDescription = "",ColumnDataType = "varchar(128)", IsNullable = true)]
|
||||
public string DeviceNetWorkStatus { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "DeviceDESCRIPTION", ColumnDescription = "", ColumnDataType = "varchar(128)", IsNullable = true)]
|
||||
public string DeviceDESCRIPTION { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "DeviceIncludeModel", ColumnDescription = "", ColumnDataType = "varchar(128)", IsNullable = true)]
|
||||
public string DeviceIncludeModel { get; set; }
|
||||
}
|
||||
}
|
@ -32,5 +32,10 @@ namespace HT.Cloud.Domain.SystemSecurity
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName="IODESCRIPTION", ColumnDescription = "IO功能名称",ColumnDataType = "varchar(128)", IsNullable = true)]
|
||||
public string IODESCRIPTION { get; set; }
|
||||
}
|
||||
/// <summary>
|
||||
/// IO功能名称
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "IOTagName", ColumnDescription = "IOTag", ColumnDataType = "varchar(128)", IsNullable = true)]
|
||||
public string IOTagName { get; set; }
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user