38 lines
831 B
C#
38 lines
831 B
C#
using OrpaonEMS.Core.Model;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OrpaonEMS.App.Event
|
|
{
|
|
public class CoolAlarmCellEventHandMsg:EventArgs
|
|
{
|
|
/// <summary>
|
|
/// Alarm状态
|
|
/// </summary>
|
|
public bool State { get; set; }
|
|
|
|
/// <summary>
|
|
/// Category
|
|
/// </summary>
|
|
public ushort Category { get; set; }
|
|
|
|
///// <summary>
|
|
///// Alarm等级
|
|
///// </summary>
|
|
//public int Level { get; set; }
|
|
|
|
/// <summary>
|
|
/// Alarm内容
|
|
/// </summary>
|
|
public string Content { get; set; }
|
|
|
|
/// <summary>
|
|
/// 报警时间信息
|
|
/// </summary>
|
|
public AlarmTimeInfo CurTimeInfo { get; set; }
|
|
}
|
|
}
|