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.
31 lines
683 B
31 lines
683 B
using Service.Cloud.Common;
|
|
|
|
namespace Service.Cloud.Msg.Host.Req
|
|
{
|
|
/// <summary>
|
|
/// 4.2.11.1 换电站电池包数据信息
|
|
/// </summary>
|
|
public class BatDataInfo : ICmd
|
|
{
|
|
/// <summary>
|
|
/// 场站编码 换电站唯一码
|
|
/// </summary>
|
|
public string sn { get; set; }
|
|
|
|
/// <summary>
|
|
/// 换电站电池包总 数量
|
|
/// </summary>
|
|
public int batn { get; set; }
|
|
|
|
/// <summary>
|
|
/// 电池信息
|
|
/// </summary>
|
|
public List<SingleBatInfo> datainfo { get; set; }
|
|
|
|
public string GetCmd()
|
|
{
|
|
return CloudConst.batDataInfo;
|
|
}
|
|
}
|
|
}
|