using Service.Cloud.Common; namespace Service.Cloud.Msg.Host.Req; /// /// 5.2.5 电能表累计值信息 /// public class PowerTotal : ICmd { /// /// 换电站编码 /// public string sn { get; set; } /// /// 安装位置编号 /// public int addr { get; set; } /// /// 位置描述 /// public string desc { get; set; } /// /// 电表编码 /// public string ms { get; set; } /// /// 累积值 单位:kWh,保留两位 小数 /// public float mk { get; set; } public string GetCmd() { return CloudConst.powerTotal; } }