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.9.1 后台服务器下发换电站充电机的电价模型 /// public class SetStaPriceRes : ICmd { /// /// 应答结果 /// 0:成功 1:失败 /// /// public int re { get; set; } ///// ///// 更新时间 ///// 格式”yyyy-MM-dd HH:mm:ss” ///// //public string ut { get; set; } ///// ///// 电价模型 id ///// 由服务器统一进行分配 ///// //public int ceid { get; set; } ///// ///// 电价 ///// 精度 0.0001 元 ///// //public float ep { get; set; } ///// ///// 开始时段 ///// 格式”HH:mm:ss”精确到小时 ///// //public string st { get; set; } ///// ///// 结束时段 ///// 格式“HH:mm:ss” 精确到小时 ///// //public string et { get; set; } ///// ///// 时段序号 ///// 对应尖峰平谷序号1:尖; 2:峰; 3:平; 4:谷 ///// ///// //public int pr { get; set; } public string GetCmd() { return CloudConst.setStaPriceRes; } } }