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.

48 lines
1.2 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.8.1 换电站设备状态开始日志信息
/// </summary>
public class EqmStateStartLogInfo : 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;
}
}
}