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.

42 lines
1.0 KiB

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