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