using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Module.UpsEqm.ModBusTcp.Models { public class UpsPageShowInfo { /// /// 更新时间 /// public string update { get; set; } /// /// UPS版本号: /// public ushort upsVersion { get; set; } /// /// UPS类型 /// public string upsType { get; set; } /// /// 输出电压R 0.1v /// public ushort outputVolt { get; set; } /// /// 输入电压R 0.1v /// public ushort inputVolt { get; set; } /// /// 输入频率 0.1HZ /// public ushort inputFreq { get; set; } /// /// O/P load负载百分比 16% /// public ushort outPutLoadPct { get; set; } /// /// 电池电压 /// public ushort batteryVolt { get; set; } /// /// 温度 /// public ushort temp { get; set; } /// /// 额定电源电压 /// public ushort ratedVolt { get; set; } /// /// 额定电流R /// public ushort tatedCurrent { get; set; } /// /// 电池单元格电压 /// public ushort batteryTotalVolt { get; set; } /// /// 输出频率 /// public ushort frequency { get; set; } /// /// 市电异常:旁路干线故障 /// public bool mainsPowerFail { get; set; } = false; /// /// 旁路/稳压模式 /// public bool bypassVoltageStableModel { get; set; } = false; /// /// 电池电压低 /// public bool lowBatteryVolt { get; set; } = false; /// /// UPS模块全故障 /// public bool upsFault { get; set; } = false; /// /// 电池自检中 /// public bool systemTesting { get; set; } = false; /// /// 关机模式 /// public bool remoteSystemShutdown { get; set; } = false; /// /// 电池模式下是否有蜂鸣器告警 /// public bool alarmSounOn { get; set; }=false; } }