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.

77 lines
2.1 KiB
C#

2 months ago
#region << 版 本 注 释 >>
/*--------------------------------------------------------------------
* (c) 2025 WenJY
* CLR4.0.30319.42000
* Mr.Wen's MacBook Pro
* Sln.lmm.Collection.Model.Common.InstalledMaterial
* 3314F543-142F-4211-B49B-7FD9339F25DB
*
* WenJY
*
* 2025-10-16 14:08:03
* V1.0.0
*
*
*--------------------------------------------------------------------
*
*
*
*
* V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
using Sln.Iot.Model.api.Common.InstalledMaterial.@enum;
namespace Sln.Iot.Model.api.Common.InstalledMaterial
{
/// <summary>
/// 组件电电气测试
/// </summary>
public class ComponentElectricalTest
{
/// <summary>
/// 电电气预期值
/// </summary>
public double ExpectedValue { get; set; }
/// <summary>
/// 电电气测量值
/// </summary>
public double MeasuredValue { get; set; }
/// <summary>
/// 测试结果
/// </summary>
public bool Result { get; set; }
/// <summary>
/// 测量频率 (Hz)
/// </summary>
public double Frequency { get; set; }
/// <summary>
/// 电电气测试仪序列号
/// </summary>
public string TesterSerialNumber { get; set; }
/// <summary>
/// 电电气测量公差(最小)
/// </summary>
public double ToleranceMin { get; set; }
/// <summary>
/// 电电气测量公差(最大)
/// </summary>
public double ToleranceMax { get; set; }
/// <summary>
/// 期望、测量与公差数值单位
/// 0= Unknown 1= Ohm (电阻) 2= Farad (电容) 3= Henry (电感)
/// 4= Volt (二极管) 5= Hertz 6= Watt
/// </summary>
public ComponentElectricalTestUnit Unit { get; set; }
}
}