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.
|
|
|
|
using Service.Cloud.Common;
|
|
|
|
|
|
|
|
|
|
namespace Service.Cloud.Msg.Host.Req;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 5.2.19 换电站分时用电计费信息
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class StaHourAmountVal : ICmd
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 换电站编码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string sn { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 小时总量用电计费 单位:元,保留两位小数
|
|
|
|
|
/// </summary>
|
|
|
|
|
public float ht { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 小时充电用电计费 单位:元,保留两位小数
|
|
|
|
|
/// </summary>
|
|
|
|
|
public float hc { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 小时换电用电计费 单位: 元,保留两位小数
|
|
|
|
|
/// </summary>
|
|
|
|
|
public float hs { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 小时其它用电计费 单位: 元,保留两位小数
|
|
|
|
|
/// </summary>
|
|
|
|
|
public float ho { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 开始时间 精确到小时。格式 ”yyyy-MM-dd HH:mm:ss”(如 2020-11-20 18:00:00)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DateTime st { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 结束时间 精确到小时。格式 ”yyyy-MM-dd HH:mm:ss”(如 2020-11-20 19:00:00)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DateTime et { get; set; }
|
|
|
|
|
public string GetCmd()
|
|
|
|
|
{
|
|
|
|
|
return CloudConst.staHourAmountVal;
|
|
|
|
|
}
|
|
|
|
|
}
|