using Service.Cloud.Common;
namespace Service.Cloud.Msg.Host.Req
{
///
/// 4.2.11.1 换电站电池包数据信息
///
public class BatDataInfo : ICmd
{
///
/// 场站编码 换电站唯一码
///
public string sn { get; set; }
///
/// 换电站电池包总 数量
///
public int batn { get; set; }
///
/// 电池信息
///
public List datainfo { get; set; }
public string GetCmd()
{
return CloudConst.batDataInfo;
}
}
}