FactSheet_HikRobot.cs
2.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
using System.Text.Json.Serialization;
using Rcs.Domain.Extensions;
namespace Rcs.Domain.Models.VDA5050.HikRobot
{
/// <summary>
/// AGV״̬��Ϣ��A����Э����չ��
/// </summary>
[ProtocolInfo("HikRobot", "2.0.0", nameof(FactSheet))]
public class FactSheet_HikRobot : FactSheet
{
#region �����ֶ�
/// <summary>
/// ��������������������ԣ�
/// </summary>
[JsonPropertyName("physicalParameters")]
public Hik_PhysicalParameters HikPhysicalParameters { get; set; } = new();
#endregion
#region ɾ���ֶ�
[JsonIgnore]
public new PhysicalParameters PhysicalParameters { get; set; } = new();
/// <summary>
/// Э�����ƣ�MQTTͨ�����ƣ�
/// </summary>
[JsonIgnore]
public new ProtocolLimits ProtocolLimits { get; set; } = new();
/// <summary>
/// Э�����ԣ�֧�ֵ�VDA5050���ԣ�
/// </summary>
[JsonIgnore]
public new ProtocolFeatures ProtocolFeatures { get; set; } = new();
/// <summary>
/// AGV���νṹ�������ͳ��ֶ��壩
/// </summary>
[JsonIgnore]
public new AgvGeometry AgvGeometry { get; set; } = new();
/// <summary>
/// ���ع淶�����ش���������
/// </summary>
[JsonIgnore]
public new LoadSpecification LoadSpecification { get; set; } = new();
/// <summary>
/// �������ã���Ӳ���汾��������Ϣ��
/// </summary>
[JsonIgnore]
public new VehicleConfig? VehicleConfig { get; set; }
#endregion
}
public class Hik_PhysicalParameters : PhysicalParameters {
/// <summary>
/// �ճ�����xy���ȷ�Χ
/// </summary>
[JsonPropertyName("emptyMoveDeviationXY")]
public double EmptyMoveDeviationXY { get; set; }
/// <summary>
/// ��������xy���ȷ�Χ
/// </summary>
[JsonPropertyName("loadMoveDeviationXY")]
public double LoadMoveDeviationXY { get; set; }
}
}