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.

44 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.TrackAndTrace.ToolTrace.ToolsUsed
* AAF9BE31-E82C-4FF8-BE3B-6253CE179932
*
* WenJY
*
* 2025-10-16 14:15:43
* V1.0.0
*
*
*--------------------------------------------------------------------
*
*
*
*
* V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
namespace Sln.Iot.Model.api.TrackAndTrace.ToolTrace.ToolsUsed
{
/// <summary>
/// 5.4.2.7.1 - 治具使用事件
/// 当治具于产品生产中使用时,上报记录治具信息
/// </summary>
public class ToolsUsed
{
/// <summary>
/// 由 WorkStarted 消息指定的相关事务 ID
/// </summary>
public Guid TransactionID { get; set; }
/// <summary>
/// 治具使用信息列表
/// </summary>
public List<ToolUsed> UsedTools { get; set; }
}
}