You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.4 KiB
C#

2 months ago
#region << 版 本 注 释 >>
/*--------------------------------------------------------------------
* (c) 2025 WenJY
* CLR4.0.30319.42000
* Mr.Wen's MacBook Pro
* Sln.lmm.Collection.Model.StationInformation.StationPerformanceReporting.GetActiveFaults
* F37720F7-3BF1-44AE-BABB-4584383327DB
*
* WenJY
*
* 2025-10-20 13:34:41
* V1.0.0
*
*
*--------------------------------------------------------------------
*
*
*
*
* V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
using Sln.Iot.Model.api.BaseModel;
using Sln.Iot.Model.api.Common.Fault;
namespace Sln.Iot.Model.api.StationInformation.StationPerformanceReporting.GetActiveFaults
{
/// <summary>
/// 5.4.4.1.5 - 查询当前有无错误
/// 上端系統會發送一個查詢目前設備當前有無錯誤的請求,設備需進行即時的響應
/// </summary>
public class GetActiveFaultsResponse
{
/// <summary>
/// 请求结果
/// </summary>
public RequestResult Result { get; set; }
/// <summary>
/// 激活故障列表
/// </summary>
public List<Fault> ActiveFaults { get; set; }
}
}