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