schangxiang@126.com
2025-09-17 ff43ddf18764629ff875478e4e47a7281cbd230a
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Admin.NET.Core.WareHouse.Enum
{
    /// <summary>
    /// 特殊库位枚举 [Editby shaocx,2022-12-7]
    /// </summary>
    public enum WareLocationEnum
    {
        /// <summary>
        /// 发货区域库位
        /// </summary>
        [Description("发货区域库位")]
        SHIPPING = 1,
        /// <summary>
        /// 平库区域库位
        /// </summary>
        [Description("平库区域库位")]
        PKQYKW = 2,
        ///// <summary>
        ///// 客户寄售区域库位
        ///// </summary>
        //[Description("客户寄售区域库位")]
        //KHJSQYKW = 3,
        /// <summary>
        /// 收货区域库位
        /// </summary>
        [Description("收货区域库位")]
        STAGING = 4,
        /// <summary>
        /// 待检区域库位
        /// </summary>
        [Description("待检区域库位")]
        QMLOT = 5,
 
 
        ///// <summary>
        ///// 越库区域库位
        ///// </summary>
        //[Description("越库区域库位")]
        //YKQY = 8,
        /// <summary>
        /// 不良品区域库位
        /// </summary>
        [Description("不良品区域库位")]
        SQE = 9,
 
        /// <summary>
        /// 分拣区域
        /// </summary>
        [Description("分拣区域")]
        FJQY = 10
    }
}