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.

97 lines
2.7 KiB
C#

2 months ago
#region << 版 本 注 释 >>
/*--------------------------------------------------------------------
* (c) 2025 WenJY
* CLR4.0.30319.42000
* Mr.Wen's MacBook Pro
* Sln.lmm.Collection.Model.TestAndInspection.InspectedPanel
* 0FC92FC5-5F18-4884-BB5B-1C7203B5A44C
*
* WenJY
*
* 2025-10-22 16:43:39
* V1.0.0
*
*
*--------------------------------------------------------------------
*
*
*
*
* V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
using Sln.Iot.Model.api.TestAndInspection.Enum;
namespace Sln.Iot.Model.api.TestAndInspection.InspectedPanel
{
public class Inspection
{
/// <summary>
/// 每次检查都不同的唯一测试ID
/// </summary>
public string UniqueIdentifier { get; set; }
/// <summary>
/// 检测项目名称
/// </summary>
public string InspectionName { get; set; }
/// <summary>
/// 检测开始时间
/// </summary>
public DateTime? InspectionStartTime { get; set; }
/// <summary>
/// 检测结束时间
/// </summary>
public DateTime? InspectionEndTime { get; set; }
/// <summary>
/// 检测步骤
/// </summary>
public string TestProcedure { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Comments { get; set; }
/// <summary>
/// 检测结果
/// </summary>
public TestResult? Result { get; set; }
/// <summary>
/// 错误信息
/// </summary>
public string Error { get; set; }
/// <summary>
/// 缺陷信息
/// </summary>
public List<Defect> DefectsFound { get; set; } = new List<Defect>();
/// <summary>
/// 症状信息
/// </summary>
public List<Symptom> Symptoms { get; set; } = new List<Symptom>();
/// <summary>
/// 测量数据信息
/// </summary>
public List<Measurement> Measurements { get; set; } = new List<Measurement>();
/// <summary>
/// 用于连接检测测试以及测试对象的唯一ID
/// </summary>
public int? RefNo { get; set; }
/// <summary>
/// 验证结果(缺陷分类)
/// </summary>
public VerificationResult? Verification { get; set; }
/// <summary>
/// 验证结果
/// </summary>
public string VerificationDetail { get; set; }
}
}