using Service.Cloud.Common;
namespace Service.Cloud.Msg.Host.Resp;
///
/// 5.2.3.2 站控应答后台服务器下发取消电池预约信息
///
public class CancelAmtRes : ICmd
{
///
/// 1:预约电池失败; 2:换电站无电池可预约; 3:预约成功;
///
///
public int result { get; set; }
///
/// station no
/// 换电站唯一码,区域码+类型码+流水号
///
public string stationNo { get; set; }
///
/// 车牌号
///
public string carNo { get; set; }
public string GetCmd()
{
return CloudConst.cancleAmtBatRes;
}
}