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 CarCanStartRes : ICmd { /// /// 接收结果 /// 0:成功 1:失败 /// /// public int result { get; set; } /// /// 车辆所在的换电 通道 /// 从 1 开始递增, 0:表示默认单仓单通道 /// public int channel { get; set; } /// /// 订单号 /// 场站编码(12 字节)+时间(yyyyMMddHHmmss)14 位 + 2 位 /// public string order { get; set; } /// /// 换电请求应答 /// 0 无 1 换电请求成功 2 换电请求失败3 取消换电请求成功 4 取消换电请求失败 /// /// public int swapFlag { get; set; } public string GetCmd() { return CloudConst.carCanStartRes; } public CarCanStartRes(int result, int channel, string order, int swapFlag) { this.result = result; this.channel = channel; this.order = order; this.swapFlag = swapFlag; } } }