dengjunjie
18 小时以前 90ac374a64e47e2bd97ee9245f4cafb50ad5dbbb
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_Common.LocationEnum
{
    public enum RGVLocationTypeEnum
    {
        /// <summary>
        /// 单通道
        /// </summary>
        [Description("单通道")]
        SingleChannel = 1,
 
        /// <summary>
        /// 双通道
        /// </summary>
        [Description("双通道")]
        BinaryChannels = 2,
    }
 
    /// <summary>
    /// 货位类型
    /// </summary>
    public enum LocationTypeEnum
    {
        /// <summary>
        /// 未定义
        /// </summary>
        [Description("未定义")]
        Undefined = 0,
 
        /// <summary>
        /// 小托盘
        /// </summary>
        [Description("小托盘")]
        SmallPallet = 1,
 
        /// <summary>
        /// 中托盘
        /// </summary>
        [Description("中托盘")]
        MediumPallet = 2,
 
        /// <summary>
        /// 大托盘
        /// </summary>
        [Description("大托盘")]
        LargePallet = 3,
 
        /// <summary>
        /// 特大托盘
        /// </summary>
        [Description("特大托盘")]
        ExtraPallet = 4,
    }
}