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 { /// /// 2 换电站应答车辆开始换电指令 /// public class PowerChangeCommandResp : ICmd { /// /// 接收结果 /// public int re { get; set; } /// /// 车辆所在的换电 通道 /// public int en { get; set; } /// /// 订单号 /// public string on { get; set; } /// /// 换电请求应答 /// public int cs { get; set; } public string GetCmd() { return CloudConst.carCanStartRes; } } }