wanshenmean
6 天以前 5171d3f59b89389bf75293afd210cfa6de4ccff7
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_Common.WareHouseEnum
{
    /// <summary>
    /// 仓库
    /// GW1 = 陕煤二厂 - 高温1号仓库<br/>
    /// CW1 = 陕煤二厂 - 常温1号仓库<br/>
    /// HCFR1 = 陕煤二厂 - 分容1号仓库<br/>
    /// GW2 = 陕煤二厂 - 高温2号仓库<br/>
    /// ZJ1 = 陕煤二厂 - 正极卷仓<br/>
    /// FJ1 = 陕煤二厂 - 负极卷仓<br/>
 
    /// </summary>
    public enum WarehouseEnum
    {
        /// <summary>
        /// 高温1号仓库
        /// </summary>
        [Description("高温1号仓库")]
        GW1 = 1,
        /// <summary>
        /// 常温1号仓库
        /// </summary>
        [Description("常温1号仓库")]
        CW1 = 2,
        /// <summary>
        /// 分容1号仓库
        /// </summary>
        [Description("分容1号仓库")]
        HCFR1 = 3,
        /// <summary>
        /// 高温2号仓库
        /// </summary>
        [Description("高温2号仓库")]
        GW2 = 4,
        /// <summary>
        /// 正极卷仓
        /// </summary>
        [Description("正极卷仓")]
        ZJ1 = 5,
        /// <summary>
        /// 负极卷仓
        /// </summary>
        [Description("负极卷仓")]
        FJ1 = 6
    }
}