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.9 KiB
C#

2 months ago
#region << 版 本 注 释 >>
/*--------------------------------------------------------------------
* (c) 2025 WenJY
* CLR4.0.30319.42000
* Mr.Wen's MacBook Pro
* Sln.lmm.Collection.Model.TestAndInspection
* 17D28DD3-8E8D-4424-9B28-C3EA6B7A688C
*
* WenJY
*
* 2025-10-22 16:35:56
* V1.0.0
*
*
*--------------------------------------------------------------------
*
*
*
*
* V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
using Sln.Iot.Model.api.TestAndInspection.Enum;
namespace Sln.Iot.Model.api.TestAndInspection.InspectedPanel
{
public class InspectedPanel
{
/// <summary>
/// 基准点信息
/// </summary>
public List<FiducialInfo> Fiducials { get; set; } = new List<FiducialInfo>();
/// <summary>
/// 检测项目数据
/// </summary>
public List<Inspection> Inspections { get; set; } = new List<Inspection>();
/// <summary>
/// 检测结果
/// </summary>
public TestResult? OverallResult { get; set; }
/// <summary>
/// 刮刀方向
/// </summary>
public SolderPasteSqueegeeDirection? RecognizedStrokeDirection { get; set; }
/// <summary>
/// 拉伸
/// </summary>
public double? Stretch { get; set; }
/// <summary>
/// 总检测数量
/// </summary>
public int? TotalInspectionCount { get; set; }
/// <summary>
/// 单元标识符
/// </summary>
public string UnitIdentifier { get; set; }
/// <summary>
/// 验证结果
/// </summary>
public VerificationResult? Verification { get; set; }
}
}