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.

20 lines
409 B

using Service.Cloud.Common;
namespace Service.Cloud.Msg.Host.Req;
/// <summary>
/// 5.2.11 电能表每天能耗值信息
/// </summary>
public class MeterDayEnergyVal : ICmd
{
/// <summary>
/// 换电站编码
/// </summary>
public string sn { get; set; }
public List<meter2> meter { get; set; }
public string GetCmd()
{
return CloudConst.meterDayEnergyVal;
}
}