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.

46 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.ExactMaterialTraceWithInternalSetup.MaterialsInstalled
* 35A901DD-8AF3-4FCC-97AF-9C3BE7CFF1A0
*
* WenJY
*
* 2025-10-16 14:04:40
* V1.0.0
*
*
*--------------------------------------------------------------------
*
*
*
*
* V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
using Sln.Iot.Model.api.Common.InstalledMaterial;
namespace Sln.Iot.Model.api.TrackAndTrace.ExactMaterialTraceWithInternalSetup.MaterialsInstalled
{
/// <summary>
/// 当物料安装至产品上时,上报记录物料信息
/// 5.4.2.5: 设备自身可精确追踪使用物料
/// </summary>
public class MaterialsInstalled
{
/// <summary>
/// 与安装关联的工作事务 ID
/// </summary>
public Guid TransactionId { get; set; }
/// <summary>
/// 已安装的物料清单
/// </summary>
public List<InstalledMaterial> InstalledMaterials { get; set; }
}
}