添加项目文件。

This commit is contained in:
2025-02-28 22:23:13 +08:00
parent d4ad2fe2de
commit 547a1b3bf6
416 changed files with 72830 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
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; }
}
}