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.8.1 换电站设备状态开始日志信息
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class StartLogMessage : ICmd
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 设备编号
|
|
|
|
|
/// 无辅助设备(场站码+00000)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string en { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 状态值
|
|
|
|
|
/// 变化前状态值
|
|
|
|
|
/// </summary>
|
|
|
|
|
public byte SV { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 状态名称
|
|
|
|
|
/// 变化前状态名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string sm { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 变化时刻
|
|
|
|
|
/// 格式”yyyy-MM-dd HH:mm:ss”
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DateTime st { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 采集模式
|
|
|
|
|
/// 1:自动;2:人工录入
|
|
|
|
|
/// <see cref="Entity.Constant.CloudEnum.EscalationMethod"/>
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int cm { get; set; }
|
|
|
|
|
|
|
|
|
|
public string GetCmd()
|
|
|
|
|
{
|
|
|
|
|
return CloudConst.eqmStateStartLogInfo;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|