30 lines
833 B
C#
30 lines
833 B
C#
![]() |
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; }
|
|||
|
|
|||
|
}
|
|||
|
}
|