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