using SqlSugar;
namespace Entity.DbModel.Station
{
///
///设备报警记录
///
[SugarTable("equip_alarm_define")]
public partial class EquipAlarmDefine : BaseModel
{
public EquipAlarmDefine()
{
}
///
/// Desc:id
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")]
public int Id { get; set; }
///
/// Desc:设备类型编码
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "equip_type_code")]
public int EquipTypeCode { get; set; }
///
/// Desc:设备编码
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "equip_code")]
public string EquipCode { get; set; }
///
/// Desc:报警编码
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "error_code")]
public string ErrorCode { get; set; }
///
/// Desc:报警等级
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "error_level")]
public string ErrorLevel { get; set; }
///
/// Desc:报警描述
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "error_msg")]
public string ErrorMsg { get; set; }
///
/// Desc:处理方法
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "process_method")]
public string ProcessMethod { get; set; }
}
}