Files
HTCloud/HT.Cloud.Domain/Entity/DevicesManage/TestDeviceMonitoringEntity.cs
dell fbc097d131 1、陕西建龙打包版本
2、drawio导入SFC
3、多系统并存修改
2025-02-19 16:06:08 +08:00

30 lines
833 B
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.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; }
}
}