using Service.Cloud.Common; namespace Service.Cloud.Msg.Host.Req; /// /// 5.2.9 电能表小时能耗值信息 /// public class MeterEnergyKwh : ICmd { /// /// 换电站编码 /// public string sn { get; set; } /// /// 电表编码 /// public string ms { get; set; } /// /// 安装位置编号 /// public int addr { get; set; } /// /// 位置描述 /// public string desc { get; set; } /// /// 变化值 单位:kWh,保留两 位小数 /// public float mc { get; set; } /// /// 开始时间 格式” yyyy-MM-dd HH:mm:ss ” /// public DateTime st { get; set; } /// /// 结束时间 格式” yyyy-MM-dd HH:mm:ss ” /// public DateTime et { get; set; } public string GetCmd() { return CloudConst.meterEnergyKwh; } }