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.

65 lines
1.8 KiB
C#

2 months ago
#region << 版 本 注 释 >>
/*--------------------------------------------------------------------
* (c) 2025 WenJY
* CLR4.0.30319.42000
* Mr.Wen's MacBook Pro
* Sln.lmm.Collection.Model.TestAndInspection.InspectedUnit
* 31C88990-ABA5-47BD-A019-798AD4B8C93E
*
* WenJY
*
* 2025-10-22 16:56:05
* V1.0.0
*
*
*--------------------------------------------------------------------
*
*
*
*
* V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
using Sln.Iot.Model.api.TestAndInspection.Enum;
using Sln.Iot.Model.api.TestAndInspection.InspectedPanel;
namespace Sln.Iot.Model.api.TestAndInspection.InspectedUnit
{
/// <summary>
/// 检测单元信息
/// </summary>
public class InspectedUnit
{
/// <summary>
/// 总体检测结果
/// </summary>
public TestResult? OverallResult { get; set; }
/// <summary>
/// 检测项目数据
/// </summary>
public List<Inspection> Inspections { get; set; } = new List<Inspection>();
/// <summary>
/// 单元ID
/// </summary>
public string UnitIdentifier { get; set; }
/// <summary>
/// 单元位置编号
/// </summary>
public int UnitPositionNumber { get; set; }
/// <summary>
/// 缺陷结果
/// </summary>
public VerificationResult? Verification { get; set; }
/// <summary>
/// 总检测数量
/// </summary>
public int? TotalInspectionCount { get; set; }
}
}