1
huanghongfeng
10 天以前 0b4792ff8245f9eac16e6d02452eb9a091f6f72b
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 System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO.Enum
{
    public enum RGVEquipment
    {
        /// <summary>
        /// 入库口RGV
        /// </summary>
        [Description("入库口RGV")]
        InRGVForklift = 1,
        /// <summary>
        /// 出库口RGV
        /// </summary>
        [Description("出库口RGV")]
        OutRGVForklift = 2,
        /// <summary>
        /// 过道子车
        /// </summary>
        [Description("过道子车")]
        Corridorcar = 3,
 
        /// <summary>
        /// 母车拖车
        /// </summary>
        [Description("母车拖车")]
        Mothertrailer = 4,
        /// <summary>
        /// 异常出库口
        /// </summary>
        [Description("异常出库口")]
        AbnormalOutbound =5,
        /// <summary>
        /// 出库站台
        /// </summary>
        [Description("出库站台")]
        OutboundPlatform =6,
        /// <summary>
        /// HCJ站台
        /// </summary>
        [Description("HCJ站台")]
        HCJPlatform = 7,
 
        /// <summary>
        /// 异常出库口
        /// </summary>
        [Description("异常出库口")]
        OutboundExit = 8,
        /// <summary>
        /// 入库站台
        /// </summary>
        [Description("入库站台")]
        InboundPlatform = 9,
        /// <summary>
        /// 安全门
        /// </summary>
        [Description("安全门")]
        AQMexit = 10,
    }
 
    public enum RGVTasktype
    {
        /// <summary>
        /// 入库
        /// </summary>
        [Description("入库")]
        Inbound = 1,
        /// <summary>
        /// 出库
        /// </summary>
        [Description("出库")]
        Outbound = 2,
    }
 
    public enum StorageAisleEnum
    {
        /// <summary>
        /// 1巷道
        /// </summary>
        [Description("1巷道")]
        LaneOne = 1,
        /// <summary>
        /// 2巷道
        /// </summary>
        [Description("2巷道")]
        LaneTwo = 2,
        /// <summary>
        /// 3巷道
        /// </summary>
        [Description("3巷道")]
        LaneThree = 3,
        /// <summary>
        /// 4巷道
        /// </summary>
        [Description("4巷道")]
        LaneFour = 4,
    }
}