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 { /// /// 3.2.11.2 换电站应答后台服务器下发参数获取 /// public class GetConfigRes : ICmd { /// /// 应答结果 /// 0:成功 1:失败 /// /// public int re { get; set; } /// /// 可换 soc 阈值 /// 可选,1-100 /// public char chsoc { get; set; } /// /// 换电收费模型 id /// 可选 /// public int eid { get; set; } /// /// 电池运营模型 id /// 可选 /// public string oid { get; set; } /// /// 充电电接模型 id /// 可选 /// public int ceid { get; set; } public string GetCmd() { return CloudConst.getConfigRes; } } }