34 lines
721 B
C#
34 lines
721 B
C#
using OrpaonEMS.Core.Model;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OrpaonEMS.Core.EventHandMsg
|
|
{
|
|
public class PcsAlarmCellEventHandMsg : EventArgs
|
|
{
|
|
/// <summary>
|
|
/// Alarm状态
|
|
/// </summary>
|
|
public bool State { 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; }
|
|
|
|
}
|
|
}
|