pan
2025-11-06 42429ae61571ff9563c9e987cd52be2132e77775
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
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("不良品区")]
        Defective = 1,
 
        /// <summary> 
        /// 保税区
        /// </summary>
        [Description("保税区")]
        Bonded = 2,
 
        /// <summary>
        /// PCBA区
        /// </summary>
        [Description("PCBA区")]
        PCBA = 3, 
 
      
    }
}