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#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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