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.

58 lines
1.5 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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.7.1 换电站空调数据信息
/// </summary>
public class AirConditioningData : ICmd
{
/// <summary>
/// 场站编码
/// 换电站唯一码
/// </summary>
public string sn { get; set; }
/// <summary>
/// 空调编码
/// </summary>
public string ad { get; set; }
/// <summary>
/// 空调名称
/// 主要是空调管理范围的名称
/// </summary>
public string an { get; set; }
/// <summary>
/// 空调状态
/// 0:停机1:开启2:运行
/// <see cref="Entity.Constant.CloudEnum.AirConditioningStatus"/>
/// </summary>
public byte au { get; set; }
/// <summary>
/// 空调模式
/// 1:制冷2:制热3:其它
/// <see cref="Entity.Constant.CloudEnum.AirConditioningMode"/>
/// </summary>
public byte am { get; set; }
/// <summary>
/// 空调温度
/// 单位:℃
/// </summary>
public float ap { get; set; }
/// <summary>
/// 更新时刻
/// 格式”yyyy-MM-dd HH:mm:ss”
/// </summary>
public DateTime bt { get; set; }
public string GetCmd()
{
return CloudConst.acDataInfo;
}
}
}