1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace HighWayIot.Repository.domain
{
/// <summary>
///
///</summary>
[SugarTable("sys_error_log")]
public class SysErrorLogEntity
{
/// <summary>
/// 备 注:
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
/// <summary>
/// 备 注:报警内容
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "text")]
public string Text { get; set; } = null;
/// <summary>
/// 备 注:日志时间
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "log_time")]
public DateTime? Log_time { get; set; }
/// <summary>
/// 备 注:操作者
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "operator")]
public string Operator { get; set; } = null;
/// <summary>
/// 备 注:
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "device_no")]
public int? Device_no { get; set; }
}
}