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.

59 lines
1.5 KiB

5 months ago
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.5.1 换电站设备实时故障信息
/// </summary>
public class RealTimeFaultInfo : ICmd
{
/// <summary>
/// 场站編码
/// 换电站唯一码
5 months ago
/// </summary>
public string sn { get; set; }
/// <summary>
/// 设备编号
/// </summary>
public string en { get; set; }
/// <summary>
/// 故障码
/// </summary>
public string fc { get; set; }
/// <summary>
/// 故障内容
/// </summary>
public string ft { get; set; }
/// <summary>
/// 故障等级
/// </summary>
public int fl { get; set; }
/// <summary>
/// 故障标志
/// 1发生 2消失
5 months ago
/// </summary>
public int fg { get; set; }
/// <summary>
/// 发生时间
/// 格式”yyyy-MM-dd HH:mm:ss”
5 months ago
/// </summary>
public DateTime bt { get; set; }
/// <summary>
/// 采集模式
/// 1自动2人工录入
/// <see cref="Entity.Constant.CloudEnum.EscalationMethod"/>
5 months ago
/// </summary>
public int cm { get; set; }
public string GetCmd()
{
return CloudConst.faultReport;
}
}
}