using System;
namespace JinYuan.Models
{
public class AlarmCountEntry
{
///
/// PLC地址
///
public string PLCAdress { get; set; }
///
/// 报警内容
///
public string AlarmContent { get; set; }
///
/// 报警次数
///
public int AlarmCount { get; set; }
///
/// 班次
///
public string Class { get; set; }
///
/// 更新时间
///
public DateTime AlarmTime { get; set; }
}
}