添加项目文件。

This commit is contained in:
dell
2023-03-03 16:07:50 +08:00
parent 2c462551b6
commit 011039960e
585 changed files with 362460 additions and 0 deletions

View 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; }
}
}