GlueMachine.cs
2.19 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
using RCS.Model.Entity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RCS.Model.Equipment
{
/// <summary>
/// 上胶机/炮台
/// </summary>
public class GlueMachine : Base_Station
{
/// <summary>
/// 炮台有货
/// </summary>
public bool IsInstock { get; set; }
/// <summary>
/// AGV可进入放货
/// </summary>
public bool IsAllowPut { get; set; }
/// <summary>
/// AGV可进入取货
/// </summary>
public bool IsAllowPick { get; set; }
/// <summary>
/// 松轴到位
/// </summary>
public bool IsLooseShaftInPlace { get; set; }
/// <summary>
/// 合轴完成
/// </summary>
public bool IsCloseShaftCompleted { get; set; }
/// <summary>
/// 穿轴完成确认
/// </summary>
public bool IsInsertShaftCompleted { get; set; }
/// <summary>
/// 下落完成确认
/// </summary>
public bool IsDownInPlace { get; set; }
/// <summary>
/// 卸轴完成确认
/// </summary>
public bool IsUnloadShaftCompleted { get; set; }
/// <summary>
/// 卸轴完成确认
/// </summary>
public int Size { get; set; }
/// <summary>
/// 炮台中心高度
/// </summary>
public int Heigh { get; set; }
/// <summary>
/// 检测台相机X
/// </summary>
public int CameraX { get; set; }
/// <summary>
/// 检测台相机Y
/// </summary>
public int CameraY { get; set; }
/// <summary>
/// 检测台读码成功
/// </summary>
public int ScanCodeSuccess { get; set; }
/// <summary>
/// AGV请求进入炮台
/// </summary>
public int RequestIn { get; set; }
/// <summary>
/// 重复上布
/// </summary>
public int ReLoad { get; set; }
/// <summary>
/// 重复卸布
/// </summary>
public int ReUnLoad { get; set; }
}
}