duyongjia
2025-02-25 a205d879fb21a8b60348bf465a970c07b0784945
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_Common.LocationEnum
{
    /// <summary>
    /// 货位状态
    /// </summary>
    public enum LocationStatusEnum
    {
        /// <summary>
        /// 空闲
        /// </summary>
        [Description("空闲")]
        Free = 0,
 
        /// <summary>
        /// 锁定
        /// </summary>
        [Description("锁定")]
        Lock = 1,
 
        /// <summary>
        /// 有货
        /// </summary>
        [Description("有货")]
        InStock = 2,
 
        /// <summary>
        /// 空托锁定
        /// </summary>
        [Description("空托锁定")]
        PalletLock = 98,
 
        /// <summary>
        /// 空托盘
        /// </summary>
        [Description("空托盘")]
        Pallet = 99
    }
 
    public enum EnableStatusEnum
    {
        /// <summary>
        /// 正常
        /// </summary>
        [Description("正常")]
        Normal = 0,
 
        /// <summary>
        /// 只入
        /// </summary>
        [Description("只入")]
        OnlyIn = 1,
 
        /// <summary>
        /// 只出
        /// </summary>
        [Description("只出")]
        OnlyOut = 2,
 
        /// <summary>
        /// 禁用
        /// </summary>
        [Description("禁用")]
        Disable = 3
    }
 
    public enum LocationTypeEnum
    {
        /// <summary>
        /// 立库
        /// </summary>
        [Description("立库货位")]
        Cube = 1,
 
        /// <summary>
        /// 平库
        /// </summary>
        [Description("平库货位")]
        Flat = 2
    }
}