forked from hechenqingyuan/gitwms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEChange.cs
51 lines (41 loc) · 1.13 KB
/
EChange.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
/*******************************************************************************
* Copyright (C) Git Corporation. All rights reserved.
*
* Author: 情缘
* Create Date: 2014-07-22 14:48:53
*
* Description: Git.Framework
* http://www.cnblogs.com/qingyuan/
* Revision History:
* Date Author Description
* 2014-07-22 14:48:53 情缘
*********************************************************************************/
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
namespace Git.Storage.Common
{
public enum EChange
{
[Description("入库")]
In = 1,
[Description("出库")]
Out = 2,
[Description("移库(移除)")]
MoveOut = 3,
[Description("移库(移入)")]
MoveIn = -3,
[Description("报损(移除)")]
BadOut = 4,
[Description("报损(移入)")]
BadIn = -4,
[Description("盘盈")]
InventoryIncome = 5,
[Description("盘亏")]
InventoryLoss = 6,
[Description("退货")]
Back = 7,
}
}