You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
403 B

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