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.

102 lines
2.8 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.InspectedPanel
* 唯一标识878E3D48-491F-4C02-9341-A9CAC4AA796E
*
* 创建者WenJY
* 电子邮箱:
* 创建时间2025-10-22 16:44:10
* 版本V1.0.0
* 描述:
*
*--------------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
*
* 版本V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
using Sln.Iot.Model.api.TestAndInspection.Enum;
namespace Sln.Iot.Model.api.TestAndInspection.InspectedPanel
{
/// <summary>
/// 缺陷信息
/// </summary>
public class Defect
{
/// <summary>
/// 唯一缺陷ID
/// </summary>
public string UniqueIdentifier { get; set; }
/// <summary>
/// 缺陷编号
/// </summary>
public string DefectCode { get; set; }
/// <summary>
/// 缺陷分类
/// </summary>
public string DefectCategory { get; set; }
/// <summary>
/// 缺陷描述
/// </summary>
public string Description { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Comments { get; set; }
/// <summary>
/// 组件标识IDID
/// </summary>
public ComponentDesignator ComponentOfInterest { get; set; }
/// <summary>
/// 组件位置
/// </summary>
public Region RegionOfInterest { get; set; }
/// <summary>
/// 缺陷图像信息
/// </summary>
public List<Image> DefectImages { get; set; } = new List<Image>();
/// <summary>
/// 等级
/// </summary>
public int? Priority { get; set; }
/// <summary>
/// 信赖值
/// </summary>
public double? ConfidenceLevel { get; set; }
/// <summary>
/// 关联测量信息
/// </summary>
public List<Measurement> RelatedMeasurements { get; set; } = new List<Measurement>();
/// <summary>
/// 相关症状信息
/// </summary>
public List<Symptom> RelatedSymptoms { get; set; } = new List<Symptom>();
/// <summary>
/// 验证结果
/// </summary>
public VerificationResult? Verification { get; set; }
/// <summary>
/// 验证详情
/// </summary>
public string VerificationDetail { get; set; }
}
}