using Service.Cloud.Common; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Service.Cloud.Msg.Host.Req { /// /// 4.2.5.1 换电站设备实时故障信息 /// public class RealTimeFaultInfo : ICmd { /// /// 场站編码 /// public string sn { get; set; } /// /// 设备编号 /// public string en { get; set; } /// /// 故障码 /// public string fc { get; set; } /// /// 故障内容 /// public string ft { get; set; } /// /// 故障等级 /// public int fl { get; set; } /// /// 故障标志 /// public int fg { get; set; } /// /// 发生时间 /// public DateTime bt { get; set; } /// /// 采集模式 /// public int cm { get; set; } public string GetCmd() { return CloudConst.faultReport; } } }