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

using Service.Cloud.Common;
namespace Service.Cloud.Msg.Host.Req;
5 months ago
/// <summary>
/// 5.2.15 换电站每天用电统计信息
/// </summary>
public class StaDayEnergyVal : ICmd
5 months ago
{
/// <summary>
/// 换电站编码
/// </summary>
public string sn { get; set; }
/// <summary>
/// 天计算总量能耗值 单位:kWh,保留两位小 数
/// </summary>
4 months ago
public float ht { get; set; }//原dt改ht和小时字段一致云平台说的下面几个字段一样
5 months ago
/// <summary>
/// 天计算充电能耗值 单位:kWh,保留两位小 数
/// </summary>
4 months ago
public float hc { get; set; }
5 months ago
/// <summary>
/// 天计算换电能耗值 单位:kWh,保留两位小 数
/// </summary>
4 months ago
public float hs { get; set; }
5 months ago
/// <summary>
/// 天计算其它能耗值 单位:kWh,保留两位小 数
/// </summary>
4 months ago
public float ho { get; set; }
5 months ago
/// <summary>
/// 开始时间 精确到天。格式”yyyy-MM-dd”如2020-11-20 )
/// </summary>
public DateTime st { get; set; }
/// <summary>
/// 结束时间 精确到天。格式”yyyy-MM-dd”如2020-11-21)
/// </summary>
public DateTime et { get; set; }
public string GetCmd()
{
return CloudConst.staDayEnergyVal;
}
5 months ago
}