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.

55 lines
1.4 KiB
C#

2 months ago
#region << 版 本 注 释 >>
/*--------------------------------------------------------------------
* (c) 2025 WenJY
* CLR4.0.30319.42000
* Mr.Wen's MacBook Pro
* Sln.lmm.Collection.Model.Common.InstalledMaterial
* 4C3E904B-58B4-4353-A5C6-6102E90B35C0
*
* WenJY
*
* 2025-10-16 14:07:27
* V1.0.0
*
*
*--------------------------------------------------------------------
*
*
*
*
* V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
namespace Sln.Iot.Model.api.Common.InstalledMaterial
{
/// <summary>
/// 已安装的组件信息
/// </summary>
public class InstalledComponent
{
/// <summary>
/// 元件安装位置
/// </summary>
public string ReferenceDesignator { get; set; }
/// <summary>
/// 元件安装时间
/// 5.4.2.6: 必须精确到秒
/// </summary>
public DateTime InstallationTime { get; set; }
/// <summary>
/// 电电气测试结果
/// </summary>
public ComponentElectricalTest ElectricalTest { get; set; }
/// <summary>
/// 工位信息
/// </summary>
public Stage.Stage Stage { get; set; }
}
}