You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
622 B
23 lines
622 B
using SqlSugar;
|
|
|
|
namespace Entity.DbModel.Station;
|
|
|
|
/// <summary>
|
|
/// 系统运行时故障记录
|
|
/// </summary>
|
|
[SugarTable("sys_running_falut")]
|
|
public class SysRunningFault: BaseModel
|
|
{
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")]
|
|
public int Id { get; set; }
|
|
/// <summary>
|
|
/// 故障描述
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fault_describe")]
|
|
public string? FaultDescribe { get; set; }
|
|
/// <summary>
|
|
/// 故障发生时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "falust_happen_time")]
|
|
public DateTime? FalustHappenTime { get; set; }
|
|
} |