1
z8018
2025-04-05 b5dd6918e906b194f99b88d11ce343f457af19c3
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
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 AgvStationEnum
    {
        /// <summary>
        /// 上料位
        /// </summary>
        [Description("上料位")]
        BoardLoad = 1,
        /// <summary>
        /// 下料位
        /// </summary>
        [Description("下料位")]
        BoardUnload = 2,
        /// <summary>
        /// 缓存位
        /// </summary>
        [Description("缓存位")]
        BoardStore = 3,
        /// <summary>
        /// 垫板使用位
        /// </summary>
        [Description("垫板使用位")]
        PadUse = 4,
        /// <summary>
        /// 垫板回收位
        /// </summary>
        [Description("垫板回收位")]
        PadRecycle = 5,
        /// <summary>
        /// 垫板缓存位
        /// </summary>
        [Description("垫板缓存位")]
        PadStore = 6,
    }
 
    public enum AgvareaEnum
    {
        /// <summary>
        /// 区域一
        /// </summary>
        [Description("区域一")]
        AreaOne = 1,
 
        /// <summary>
        /// 区域二
        /// </summary>
        [Description("区域二")]
        AreaTwo = 2,
 
        /// <summary>
        /// 区域三
        /// </summary>
        [Description("区域三")]
        AreaThree = 3,
 
        /// <summary>
        /// 区域四
        /// </summary>
        [Description("区域四")]
        AreaFour = 4,
    }
}