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

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