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.TrackAndTrace.ExactMaterialTraceWithExternalSetup.MaterialsInstalled
* 6820D2A0-2102-4FB5-9041-11617DD13AA7
*
* WenJY
*
* 2025-10-16 14:11:45
* V1.0.0
*
*
*--------------------------------------------------------------------
*
*
*
*
* V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
using Sln.Iot.Model.api.Common.InstalledMaterial;
namespace Sln.Iot.Model.api.TrackAndTrace.ExactMaterialTraceWithExternalSetup.MaterialsInstalled
{
/// <summary>
/// 当物料安装至产品上时,上报记录物料信息
/// 5.4.2.6: 设备依赖外部系统精确追踪使用物料
/// </summary>
public class MaterialsInstalled
{
/// <summary>
/// 与安装关联的工作事务 ID
/// </summary>
public Guid TransactionId { get; set; }
/// <summary>
/// 已安装的物料清单
/// </summary>
public List<InstalledMaterial> InstalledMaterials { get; set; }
}
}