1
647556386
2025-12-25 dc1a2cac65d1abadabda8b5fb3977199100d2cb3
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_Common.LocationEnum
{
    /// <summary>
    /// 货位类型
    /// </summary>
    public enum LocationTypeEnum
    {
        /// <summary>
        /// 正常物料区
        /// </summary>
        [Description("正常物料区")]
        Normal = 0,
 
        /// <summary>
        /// -般材料区
        /// </summary>
        [Description("智仓--般材料仓")]
        Ordinary = 1,
 
        /// <summary>
        /// 不良品区
        /// </summary>
        [Description("智仓-不良品仓")]
        Defective = 2,
        /// <summary>
        /// PCBA区
        /// </summary>
        [Description("智仓-电子仓")]
        Electronic = 3,
 
        /// <summary> 
        /// 保税区
        /// </summary>
        [Description("智仓-保税材料仓")]
        Bonded = 4,
 
        [Description("智仓-包材仓")]
        Package = 5,
 
        [Description("智仓-试产仓")]
        TrialProduction = 6,
 
    }
}