2023-03-03 16:07:50 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
|
|
|
|
namespace HT.Cloud.Domain.DevicesManage
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创 建:cdl
|
|
|
|
|
/// 日 期:2023-03-02 15:34
|
|
|
|
|
/// 描 述:设备硬件连接参数表实体类
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("Argument")]
|
2023-08-24 09:28:09 +08:00
|
|
|
|
[TenantAttribute("1")]
|
|
|
|
|
public class ArgumentEntity
|
2023-03-03 16:07:50 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName="DriverID", ColumnDescription = "",ColumnDataType = "smallint(5)")]
|
|
|
|
|
public int DriverID { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName="PropertyName", ColumnDescription = "",ColumnDataType = "varchar(50)")]
|
|
|
|
|
public string PropertyName { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName="PropertyValue", ColumnDescription = "",ColumnDataType = "varchar(50)", IsNullable = true)]
|
|
|
|
|
public string PropertyValue { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName="ID", ColumnDescription = "",ColumnDataType = "smallint(5)",IsIdentity = true,IsPrimaryKey = true)]
|
|
|
|
|
public int ID { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|