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.CoreCommunications.GetEndpointInformation
|
|
|
|
|
|
* 唯一标识:A1AA9B5C-48D9-4263-B98A-63759390A79B
|
|
|
|
|
|
*
|
|
|
|
|
|
* 创建者:WenJY
|
|
|
|
|
|
* 电子邮箱:
|
|
|
|
|
|
* 创建时间:2025-10-16 10:51:03
|
|
|
|
|
|
* 版本:V1.0.0
|
|
|
|
|
|
* 描述:
|
|
|
|
|
|
*
|
|
|
|
|
|
*--------------------------------------------------------------------
|
|
|
|
|
|
* 修改人:
|
|
|
|
|
|
* 时间:
|
|
|
|
|
|
* 修改说明:
|
|
|
|
|
|
*
|
|
|
|
|
|
* 版本:V1.0.0
|
|
|
|
|
|
*--------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
|
|
#endregion << 版 本 注 释 >>
|
|
|
|
|
|
|
|
|
|
|
|
namespace Sln.Iot.Model.api.CoreCommunications.GetEndpointInformation
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 尺寸限制 - PCB 板尺寸约束
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class DimensionalConstraints
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 最低长度 X 轴,以 mm 表达
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public double MinimumLength { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 最高长度 X 轴,以 mm 表达
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public double MaximumLength { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 最低宽度 Y 轴,以 mm 表达
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public double MinimumWidth { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 最高宽度 Y 轴,以 mm 表达
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public double MaximumWidth { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 最低高度 Z 轴,以 mm 表达
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public double MinimumHeight { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 最高高度 Z 轴,以 mm 表达
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public double MaximumHeight { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 最低重量,以克表达
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public double MinimumWeight { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 最高重量,以克表达
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public double MaximumWeight { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 最低厚度,以 mm 表达
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public double MinimumThickness { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 最高厚度,以 mm 表达
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public double MaximumThickness { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|