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.

50 lines
1.3 KiB

using Service.Cloud.Common;
namespace Service.Cloud.Msg.Host.Req;
/// <summary>
/// 5.2.1 换电站上报电池状态分布统计信息
/// </summary>
public class BatteryTotal : ICmd
{
/// <summary>
/// 换电站编码 换电站唯一码,区域码+类型码+流水号
/// </summary>
public string sn { get; set; }
/// <summary>
/// 换电站中的电 池包总数量
/// </summary>
public int btc { get; set; }
/// <summary>
/// 电池型号编号
/// </summary>
public string sm { get; set; }
/// <summary>
/// 电池型号名称
/// </summary>
public string bn { get; set; }
/// <summary>
/// 电池数量 同型号
/// </summary>
public int bc { get; set; }
/// <summary>
/// 满足可换数量 同型号
/// </summary>
public int ct { get; set; }
/// <summary>
/// 正在充电数量 同型号
/// </summary>
public int cc { get; set; }
/// <summary>
/// 剩余可充数量 同型号
/// </summary>
public int ca { get; set; }
/// <summary>
/// 更新时间 格式” yyyy-MM-dd HH:mm:ss”
/// </summary>
public DateTime ut { get; set; }
public string GetCmd()
{
return CloudConst.batteryTotal;
}
}