WeldParamProp.cs
1.21 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
68
namespace Hh.Mes.POJO.EnumEntitys
{
/// <summary>
/// 焊接参数属性
/// </summary>
public enum WeldParamProp
{
/// <summary>
/// 焊接电流
/// </summary>
current_value,
/// <summary>
/// 管径
/// </summary>
diameter,
/// <summary>
/// 当前焊接层数
/// </summary>
nowpass_number,
/// <summary>
/// 预送气
/// </summary>
pegas,
/// <summary>
/// 滞后送气
/// </summary>
postgas,
/// <summary>
/// 预熔电流
/// </summary>
preweld_current,
/// <summary>
/// 预熔时间
/// </summary>
preweld_time,
/// <summary>
/// 焊接区间个数
/// </summary>
sector_number,
/// <summary>
/// 壁厚
/// </summary>
thickness,
/// <summary>
/// 电弧电压
/// </summary>
voltage_value,
/// <summary>
/// 当前任务号
/// </summary>
weld_no,
/// <summary>
/// 焊接速度
/// </summary>
weld_speed
}
}