Blame view

HHECS.DAQHandle/Common/Enums/EquipmentTypeConst.cs 782 Bytes
唐召明 authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace HHECS.DAQHandle.Common.Enums
{
    internal enum EquipmentTypeConst
    {
        /// <summary>
        /// 单叉堆垛机
        /// </summary>
        SingleForkSRM,

        /// <summary>
        /// 双叉堆垛机
        /// </summary>
        DoubleForkSRM,

        /// <summary>
        /// 单叉高速堆垛机
        /// </summary>
        SingleForkSSRM,

        /// <summary>
唐召明 authored
21
        /// V132版单叉单任务,一般为高速堆垛机,不兼容转轨
唐召明 authored
22
        /// </summary>
唐召明 authored
23
        /// <remarks>2号厂房展会堆垛机为此类型</remarks>
唐召明 authored
24
25
26
27
28
29
30
31
32
33
34
35
36
        SingleForkSSRMV132,

        /// <summary>
        /// 焊接机器人
        /// </summary>
        WeldRobot,

        /// <summary>
        /// AGV
        /// </summary>
        AGV
    }
}