using Service.Cloud.Common; namespace Service.Cloud.Msg.Host.Req; /// /// 5.2.9 电能表小时能耗值信息 /// public class MeterEnergyKwh : ICmd { /// /// 换电站编码 /// public string sn { get; set; } public List meter { get; set; } public string GetCmd() { return CloudConst.meterEnergyKwh; } }