using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; 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; } } }