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.

37 lines
879 B

using Service.Cloud.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Service.Cloud.Msg.Host.Resp
{
/// <summary>
/// 2 换电站应答车辆开始换电指令
/// </summary>
6 months ago
public class PowerChangeCommandResp : ICmd
{
/// <summary>
/// 接收结果
/// </summary>
public int re { get; set; }
/// <summary>
/// 车辆所在的换电 通道
/// </summary>
public int en { get; set; }
/// <summary>
/// 订单号
/// </summary>
public string on { get; set; }
/// <summary>
/// 换电请求应答
/// </summary>
public int cs { get; set; }
public string GetCmd()
{
return CloudConst.carCanStartRes;
}
}
}