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.
|
|
|
|
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 TemperatureHumidityData : 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>
|
|
|
|
|
/// 发生时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DateTime bt { get; set; }
|
|
|
|
|
public string GetCmd()
|
|
|
|
|
{
|
|
|
|
|
return CloudConst.evmDataInfo;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|