唐召明
authored
|
1
2
3
4
5
6
7
|
namespace HHECS.DAQClient.Common.Enums
{
public enum EquipmentTypeConst
{
/// <summary>
/// 单叉堆垛机
/// </summary>
|
唐召明
authored
|
8
|
SingleForkSRM,
|
唐召明
authored
|
9
10
11
12
|
/// <summary>
/// 双叉堆垛机
/// </summary>
|
唐召明
authored
|
13
|
DoubleForkSRM,
|
唐召明
authored
|
14
|
|
唐召明
authored
|
15
16
17
18
19
20
21
22
23
24
|
/// <summary>
/// 单叉高速堆垛机
/// </summary>
SingleForkSSRM,
/// <summary>
/// V132版单叉单任务,一般为高速堆垛机,不兼容转轨
/// </summary>
/// <remarks>2号厂房展会堆垛机为此类型</remarks>
SingleForkSSRMV132,
|
唐召明
authored
|
25
26
27
28
29
|
/// <summary>
/// 站台监控
/// </summary>
StationMonitor,
|
唐召明
authored
|
30
31
|
}
}
|