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.
|
|
|
|
|
#region << 版 本 注 释 >>
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------
|
|
|
|
|
|
* 版权所有 (c) 2025 WenJY 保留所有权利。
|
|
|
|
|
|
* CLR版本:4.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; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|