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.

42 lines
1.2 KiB
C#

2 months ago
#region << 版 本 注 释 >>
/*--------------------------------------------------------------------
* (c) 2025 WenJY
* CLR4.0.30319.42000
* Mr.Wen's MacBook Pro
* Sln.lmm.Collection.Model.StationInformation.StationPerformanceReporting.FaultOccurred
* E5266304-44B7-4705-8031-5EE167C57C90
*
* WenJY
*
* 2025-10-16 14:41:30
* V1.0.0
*
*
*--------------------------------------------------------------------
*
*
*
*
* V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
using Sln.Iot.Model.api.Common.Fault;
namespace Sln.Iot.Model.api.StationInformation.StationPerformanceReporting.FaultOccurred
{
/// <summary>
/// 5.4.4.1.1 - 故障发生事件
/// 当设备发生错误时,须主动进行上报
/// </summary>
public class FaultOccurred
{
/// <summary>
/// 故障信息 - 具动态结构体
/// SMTPlacementFault, SMTSolderPastePrintingFault, ReflowOvenFault, THTInsertionFault
/// </summary>
public Fault Fault { get; set; }
}
}