using NXWMS.Client.Model.CoreModels; using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; namespace NXWMS.Client.Model.AppModels.Condition.Report { /// /// 报警情况统计 /// public class FaultStatisticsReportCondition : PageQueryConditionInfo { /// /// 设备类型信息 /// public string DevTypeInfo { get; set; } /// /// 设备信息 /// public string DevInfo { get; set; } /// /// 报警信息 /// public string FaultInfo { get; set; } /// /// 报警时长 开始(单位:秒) /// public int? FaultBeginTimeLen { get; set; } /// /// 报警时长 结束(单位:秒) /// public int? FaultEndTimeLen { get; set; } /// /// 报警级别 /// public int? FaultLevel { get; set; } } }