using SqlSugar;
|
using System;
|
using System.ComponentModel;
|
using System.Linq;
|
using System.Text;
|
|
namespace DataEntity.Device
|
{
|
///<summary>
|
///设备类型表
|
///</summary>
|
[SugarTable("t_deviceconfig_type")]
|
public partial class DeviceConfigTypeModel
|
{
|
/// <summary>
|
/// 设备类型表主键ID
|
/// </summary>
|
[SugarColumn(ColumnName = "Id", IsPrimaryKey = true)]
|
public string Id { get; set; }
|
|
/// <summary>
|
/// 项目ID
|
/// </summary>
|
[SugarColumn(ColumnName = "ProjectId")]
|
public string ProjectId { get; set; }
|
|
/// <summary>
|
/// 名称
|
/// </summary>
|
[SugarColumn(ColumnName = "Name")]
|
public string Name { get; set; }
|
|
/// <summary>
|
/// 备注
|
/// </summary>
|
[SugarColumn(ColumnName = "Remark")]
|
public string Remark { get; set; }
|
|
/// <summary>
|
/// 创建人
|
/// </summary>
|
[SugarColumn(ColumnName = "CreatName")]
|
public string CreatName { get; set; }
|
|
/// <summary>
|
/// 创建时间
|
/// </summary>
|
[SugarColumn(ColumnName = "CreateTime")]
|
public DateTime? CreateTime { get; set; }
|
|
/// <summary>
|
/// 修改人
|
/// </summary>
|
[SugarColumn(ColumnName = "ModifyName")]
|
public string ModifyName { get; set; }
|
|
/// <summary>
|
/// 修改时间
|
/// </summary>
|
[SugarColumn(ColumnName = "ModifyTime")]
|
public DateTime? ModifyTime { get; set; }
|
|
}
|
}
|