KukaResponseDto.cs
1.08 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
using System.Xml.Serialization;
namespace HHECS.RobotTool.Dto
{
[XmlRoot("Ext")]
public class KukaResponseDto : RobotOutputParameter
{
/// <summary>
/// 焊丝直径R(mm)
/// </summary>
[XmlElement("WeldingWire")]
public double WeldingWire { get; set; }
/// <summary>
/// 坡口预留间隙a2(mm)
/// </summary>
public double ReservedGapForGroove { get; set; }
/// <summary>
/// 坡口钝边大小h2(mm)
/// </summary>
public double SizeOfTheBluntEdgeOfTheGroove { get; set; }
/// <summary>
/// 焊缝长度 L(mm)
/// </summary>
public double WeldLength { get; set; }
/// <summary>
/// 盖面后单边所需增加余宽 a3(mm)
/// </summary>
public double AdditionalWidthRequiredOnOneSideAfterCovering { get; set; }
/// <summary>
/// 盖面后所需焊缝余高 h3(mm)
/// </summary>
public double WeldReinforcementRequiredAfterCovering { get; set; }
}
}