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.Req { /// /// 4.2.6.1 换电站温湿度数据信息 /// public class EvmDataInfo : ICmd { /// /// 场站编码 /// 换电站唯一码 /// public string sn { get; set; } /// /// 环境区域 /// public string ea { get; set; } /// /// 环境温度 /// public float et { get; set; } /// /// 环境湿度 /// public float eh { get; set; } /// /// 发生时间 /// 格式”yyyy-MM-dd HH:mm:ss” /// public DateTime bt { get; set; } public string GetCmd() { return CloudConst.evmDataInfo; } } }