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.

78 lines
2.2 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.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
{
/// <summary>
/// 5.4.5.1.1
/// 當檢測設備完成產品檢測時,使用此 Topic 進行檢測數據與結果上報。
/// </summary>
public class UnitsInspected
{
/// <summary>
/// 面板检测信息
/// </summary>
public Iot.Model.api.TestAndInspection.InspectedPanel.InspectedPanel InspectedPanel { get; set; }
/// <summary>
/// 检测单元信息
/// </summary>
public List<InspectedUnit.InspectedUnit> InspectedUnits { get; set; } = new List<InspectedUnit.InspectedUnit>();
/// <summary>
/// 检测方法
/// </summary>
public InspectionMethod? InspectionMethod { get; set; }
/// <summary>
/// 检测员信息
/// </summary>
public Operator Inspector { get; set; }
/// <summary>
/// 检测配方名称
/// </summary>
public string RecipeName { get; set; }
/// <summary>
/// 检测配方版本
/// </summary>
public string RecipeRevision { get; set; }
/// <summary>
/// 抽样方式说明
/// </summary>
public SamplingInformation.SamplingInformation SamplingInformation { get; set; }
/// <summary>
/// 关联测试任务ID
/// </summary>
public string TransactionId { get; set; }
}
}