32 lines
666 B
C#
32 lines
666 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OrpaonEMS.App.Models
|
|
{
|
|
public class BmsRtAlarmModel
|
|
{
|
|
/// <summary>
|
|
/// 报警状态
|
|
/// </summary>
|
|
public bool AlarmState { get; set; }
|
|
|
|
/// <summary>
|
|
/// Alarm等级
|
|
/// </summary>
|
|
public int AlarmLevel { get; set; }
|
|
|
|
/// <summary>
|
|
/// Alarm内容
|
|
/// </summary>
|
|
public string AlarmContent { get; set; }
|
|
|
|
/// <summary>
|
|
/// Alarm时间
|
|
/// </summary>
|
|
public DateTime AlarmTime { get; set; }
|
|
}
|
|
}
|