You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.0 KiB

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