using SqlSugar; using System; using System.Collections.Generic; using System.Security.Principal; using System.Text; namespace SlnMesnac.Model.domain { [SugarTable("dms_base_alarm_rule"), TenantAttribute("mes")] public class DmsBaseAlarmRule { /// /// 主键标识 /// [SugarColumn(ColumnName = "alarm_rule_id", IsPrimaryKey = true, IsIdentity = true)] public long AlarmRuleId { get; set; } /// /// 设备台账id, 关联dms_base_device_ledger的device_id /// [SugarColumn(ColumnName = "device_id")] public long DeviceId { get; set; } /// /// 报警类型(1AGV 2PLC 3其他设备) /// [SugarColumn(ColumnName = "alarm_type")] public string AlarmType { get; set; } /// /// 报警级别(1一级 2二级 3三级) /// [SugarColumn(ColumnName = "alarm_level")] public string AlarmLevel { get; set; } /// /// 通知方式(1WEB 2公众号 3PLC)可多选 /// [SugarColumn(ColumnName = "notice_type")] public string NoticeType { get; set; } /// /// 自动恢复标识(0否 1是) /// [SugarColumn(ColumnName = "recover_type")] public string RecoverType { get; set; } /// /// 报警持续时间(ms) /// [SugarColumn(ColumnName = "continue_time")] public long? ContinueTime { get; set; } /// /// 报警状态字 /// [SugarColumn(ColumnName = "alarm_status_word")] public string AlarmStatusWord { get; set; } /// /// 报警原因 /// [SugarColumn(ColumnName = "alarm_reason")] public string AlarmReason { get; set; } /// /// 处理建议 /// [SugarColumn(ColumnName = "handle_suggest")] public string HandleSuggest { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "remark")] public string Remark { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "create_by")] public string CreateBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "create_time")] public DateTime? CreateTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "update_by")] public string UpdateBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "update_time")] public DateTime? UpdateTime { get; set; } } }