#region << 版 本 注 释 >> /*-------------------------------------------------------------------- * 版权所有 (c) 2025 WenJY 保留所有权利。 * CLR版本:4.0.30319.42000 * 机器名称:Mr.Wen's MacBook Pro * 命名空间:Sln.lmm.Collection.Model.TestAndInspection.ProductionUnitInspection * 唯一标识:E5E6A2E8-73E2-4C2D-A96F-A6577D32A015 * * 创建者:WenJY * 电子邮箱: * 创建时间:2025-10-20 13:53:08 * 版本:V1.0.0 * 描述: * *-------------------------------------------------------------------- * 修改人: * 时间: * 修改说明: * * 版本:V1.0.0 *--------------------------------------------------------------------*/ #endregion << 版 本 注 释 >> using Sln.Iot.Model.api.Common.Operator; using Sln.Iot.Model.api.TestAndInspection.Enum; namespace Sln.Iot.Model.api.TestAndInspection { /// /// 5.4.5.1.1 /// 當檢測設備完成產品檢測時,使用此 Topic 進行檢測數據與結果上報。 /// public class UnitsInspected { /// /// 面板检测信息 /// public Iot.Model.api.TestAndInspection.InspectedPanel.InspectedPanel InspectedPanel { get; set; } /// /// 检测单元信息 /// public List InspectedUnits { get; set; } = new List(); /// /// 检测方法 /// public InspectionMethod? InspectionMethod { get; set; } /// /// 检测员信息 /// public Operator Inspector { get; set; } /// /// 检测配方名称 /// public string RecipeName { get; set; } /// /// 检测配方版本 /// public string RecipeRevision { get; set; } /// /// 抽样方式说明 /// public SamplingInformation.SamplingInformation SamplingInformation { get; set; } /// /// 关联测试任务ID /// public string TransactionId { get; set; } } }