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.

50 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.TestAndInspection.InspectedPanel
* 2261D98B-44AB-4730-A4E8-75774547C10A
*
* WenJY
*
* 2025-10-22 16:37:53
* V1.0.0
*
*
*--------------------------------------------------------------------
*
*
*
*
* V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
namespace Sln.Iot.Model.api.TestAndInspection.InspectedPanel
{
/// <summary>
/// 基准点信息
/// </summary>
public class FiducialInfo
{
/// <summary>
/// 相对于基准点的XY位置的旋转偏移量
/// </summary>
public double? FiducialRXY { get; set; }
/// <summary>
/// 相对于基准点的X位置
/// </summary>
public double? FiducialX { get; set; }
/// <summary>
/// 相对于基准点的Y位置
/// </summary>
public double? FiducialY { get; set; }
/// <summary>
/// 唯一标识ID
/// </summary>
public string UniqueIdentifier { get; set; }
}
}