添加项目文件。
This commit is contained in:
31
HT.Cloud.Domain/Entity/DevicesManage/MetaDriverEntity.cs
Normal file
31
HT.Cloud.Domain/Entity/DevicesManage/MetaDriverEntity.cs
Normal file
@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using SqlSugar;
|
||||
|
||||
namespace HT.Cloud.Domain.DevicesManage
|
||||
{
|
||||
/// <summary>
|
||||
/// 创 建:cdl
|
||||
/// 日 期:2023-03-02 15:56
|
||||
/// 描 述:设备信息列表实体类
|
||||
/// </summary>
|
||||
[SugarTable("Meta_Driver")]
|
||||
public class MetaDriverEntity
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName="DriverID", ColumnDescription = "",ColumnDataType = "smallint(5)",IsPrimaryKey = true)]
|
||||
public int DriverID { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName="DriverType", ColumnDescription = "",ColumnDataType = "int(10)")]
|
||||
public int DriverType { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName="DriverName", ColumnDescription = "",ColumnDataType = "nvarchar(64)")]
|
||||
public string DriverName { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user