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.
|
|
|
|
|
#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; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|