forked from hechenqingyuan/gitwms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathELocalType.cs
54 lines (48 loc) · 1.25 KB
/
ELocalType.cs
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
/*******************************************************************************
* Copyright (C) Git Corporation. All rights reserved.
*
* Author: 情缘
* Create Date: 2013-11-26 13:43:56
*
* Description: Git.Framework
* http://www.cnblogs.com/qingyuan/
* Revision History:
* Date Author Description
* 2013-11-26 13:43:56 情缘
*********************************************************************************/
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
namespace Git.Storage.Common
{
public enum ELocalType
{
/// <summary>
/// 正式库区
/// </summary>
[Description("正式库区")]
Normal=1,
/// <summary>
/// 待入库区
/// </summary>
[Description("待入库区")]
WaitIn=2,
/// <summary>
/// 待检库区
/// </summary>
[Description("待检库区")]
WaitCheck = 3,
/// <summary>
/// 待出库区
/// </summary>
[Description("待出库区")]
WaitOut = 4,
/// <summary>
/// 报损库区
/// </summary>
[Description("报损库区")]
Bad = 5,
}
}