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.2 KiB

using Service.Cloud.Common;
namespace Service.Cloud.Msg.Host.Req;
4 months ago
/// <summary>
/// 5.2.13 换电站分时用电统计信息
/// </summary>
public class StaHourEnergyVal : ICmd
4 months ago
{
/// <summary>
/// 换电站编码
/// </summary>
public string sn { get; set; }
/// <summary>
/// 小时计算总量能耗值 单位:kWh,保留两位 小数
/// </summary>
public float ht { get; set; }
/// <summary>
/// 小时计算充电能耗值 单位:kWh,保留两位 小数
/// </summary>
public float hc { get; set; }
/// <summary>
/// 小时计算换电能耗值 单位:kWh,保留两位 小数
/// </summary>
public float hs { get; set; }
/// <summary>
/// 小时计算其它能耗值 单位:kWh,保留两位 小数
/// </summary>
public float ho { get; set; }
/// <summary>
/// 开始时间 精确到小时。格式”yyyy-MM-ddHH:mm:ss ”如2020/11/20 18:00:00)
/// </summary>
public DateTime st { get; set; }
/// <summary>
/// 结束时间 精确到小时。格式”yyyy-MM-ddHH:mm:ss ”如2020/11/20 18:00:00)
/// </summary>
public DateTime et { get; set; }
public string GetCmd()
{
return CloudConst.staHourEnergyVal;
}
4 months ago
}