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.8.1 换电站设备状态开始日志信息
///
public class StartLogMessage : ICmd
{
///
/// 设备编号
///
public string en { get; set; }
///
/// 状态值
///
public byte SV { get; set; }
///
/// 状态名称
///
public string sm { get; set; }
///
/// 变化时刻
///
public DateTime st { get; set; }
///
/// 采集模式
///
public int cm { get; set; }
public string GetCmd()
{
return CloudConst.eqmStateStartLogInfo;
}
}
}