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
21 lines
403 B
using Service.Cloud.Common;
|
|
|
|
namespace Service.Cloud.Msg.Host.Req;
|
|
|
|
/// <summary>
|
|
/// 5.2.9 电能表小时能耗值信息
|
|
/// </summary>
|
|
public class MeterEnergyKwh : ICmd
|
|
{
|
|
/// <summary>
|
|
/// 换电站编码
|
|
/// </summary>
|
|
public string sn { get; set; }
|
|
|
|
public List<meter2> meter { get; set; }
|
|
|
|
public string GetCmd()
|
|
{
|
|
return CloudConst.meterEnergyKwh;
|
|
}
|
|
} |