1、陕西建龙打包版本
2、drawio导入SFC 3、多系统并存修改
This commit is contained in:
@ -58,5 +58,10 @@ namespace HT.Cloud.Domain.DevicesManage
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "GroupType", ColumnDescription = "", ColumnDataType = "int(10)", IsNullable = true)]
|
||||
public int? GroupType { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "SystemID", ColumnDescription = "", ColumnDataType = "smallint(5)", IsPrimaryKey = true)]
|
||||
public int SystemID { get; set; }
|
||||
}
|
||||
}
|
||||
|
38
HT.Cloud.Domain/Entity/DevicesManage/MetaSystemEntity.cs
Normal file
38
HT.Cloud.Domain/Entity/DevicesManage/MetaSystemEntity.cs
Normal file
@ -0,0 +1,38 @@
|
||||
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; }
|
||||
}
|
||||
}
|
@ -0,0 +1,29 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using SqlSugar;
|
||||
|
||||
namespace HT.Cloud.Domain.DevicesManage
|
||||
{
|
||||
/// <summary>
|
||||
/// 创 建:cdl
|
||||
/// 日 期:2023-03-02 15:34
|
||||
/// 描 述:设备硬件连接参数表实体类
|
||||
/// </summary>
|
||||
[SugarTable("Test_DeviceMonitoring")]
|
||||
[TenantAttribute("1")]
|
||||
public class TestDeviceMonitoringEntity
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName= "TagName", ColumnDescription = "",ColumnDataType = "varchar(50)")]
|
||||
public string TagName { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName= "TagValue", ColumnDescription = "",ColumnDataType = "varchar(50)", IsNullable = true)]
|
||||
public string TagValue { get; set; }
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user