Skip to content

Commit 17acfbb

Browse files
吉特仓储系统提交代码
1 parent 0382ee1 commit 17acfbb

File tree

2,669 files changed

+550986
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,669 files changed

+550986
-0
lines changed

Diff for: Git.Storage.Common/EAudite.cs

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
/*******************************************************************************
2+
* Copyright (C) Git Corporation. All rights reserved.
3+
*
4+
* Author: 情缘
5+
* Create Date: 2013-11-29 23:39:49
6+
*
7+
* Description: Git.Framework
8+
* http://www.cnblogs.com/qingyuan/
9+
* Revision History:
10+
* Date Author Description
11+
* 2013-11-29 23:39:49 情缘
12+
*********************************************************************************/
13+
14+
using System;
15+
using System.Collections.Generic;
16+
using System.ComponentModel;
17+
using System.Linq;
18+
using System.Text;
19+
20+
namespace Git.Storage.Common
21+
{
22+
public enum EAudite
23+
{
24+
[Description("等待审核")]
25+
Wait=1,
26+
27+
[Description("审核成功")]
28+
Pass=2,
29+
30+
[Description("审核失败")]
31+
NotPass=3
32+
}
33+
}

Diff for: Git.Storage.Common/EBadType.cs

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/*******************************************************************************
2+
* Copyright (C) Git Corporation. All rights reserved.
3+
*
4+
* Author: 情缘
5+
* Create Date: 2013-11-29 23:45:39
6+
*
7+
* Description: Git.Framework
8+
* http://www.cnblogs.com/qingyuan/
9+
* Revision History:
10+
* Date Author Description
11+
* 2013-11-29 23:45:39 情缘
12+
*********************************************************************************/
13+
14+
using System;
15+
using System.Collections.Generic;
16+
using System.ComponentModel;
17+
using System.Linq;
18+
using System.Text;
19+
20+
namespace Git.Storage.Common
21+
{
22+
public enum EBadType
23+
{
24+
[Description("损坏报损")]
25+
Bad = 1,
26+
27+
[Description("丢失报损")]
28+
Loss = 2,
29+
}
30+
}

Diff for: Git.Storage.Common/EBool.cs

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/*******************************************************************************
2+
* Copyright (C) Git Corporation. All rights reserved.
3+
*
4+
* Author: 情缘
5+
* Create Date: 2014-01-02 10:51:23
6+
*
7+
* Description: Git.Framework
8+
* http://www.cnblogs.com/qingyuan/
9+
* Revision History:
10+
* Date Author Description
11+
* 2014-01-02 10:51:23 情缘
12+
*********************************************************************************/
13+
14+
using System;
15+
using System.Collections.Generic;
16+
using System.ComponentModel;
17+
using System.Linq;
18+
using System.Text;
19+
20+
namespace Git.Storage.Common
21+
{
22+
public enum EBool
23+
{
24+
[Description("是")]
25+
Yes = 0,
26+
27+
[Description("否")]
28+
No = 1
29+
}
30+
}

Diff for: Git.Storage.Common/EChange.cs

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
/*******************************************************************************
2+
* Copyright (C) Git Corporation. All rights reserved.
3+
*
4+
* Author: 情缘
5+
* Create Date: 2014-07-22 14:48:53
6+
*
7+
* Description: Git.Framework
8+
* http://www.cnblogs.com/qingyuan/
9+
* Revision History:
10+
* Date Author Description
11+
* 2014-07-22 14:48:53 情缘
12+
*********************************************************************************/
13+
14+
using System;
15+
using System.Collections.Generic;
16+
using System.ComponentModel;
17+
using System.Linq;
18+
using System.Text;
19+
20+
namespace Git.Storage.Common
21+
{
22+
public enum EChange
23+
{
24+
[Description("入库")]
25+
In = 1,
26+
27+
[Description("出库")]
28+
Out = 2,
29+
30+
[Description("移库(移除)")]
31+
MoveOut = 3,
32+
33+
[Description("移库(移入)")]
34+
MoveIn = -3,
35+
36+
[Description("报损(移除)")]
37+
BadOut = 4,
38+
39+
[Description("报损(移入)")]
40+
BadIn = -4,
41+
42+
[Description("盘盈")]
43+
InventoryIncome = 5,
44+
45+
[Description("盘亏")]
46+
InventoryLoss = 6,
47+
48+
[Description("退货")]
49+
Back = 7,
50+
}
51+
}

Diff for: Git.Storage.Common/ECheckType.cs

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.ComponentModel;
4+
using System.Linq;
5+
using System.Text;
6+
7+
namespace Git.Storage.Common
8+
{
9+
public enum ECheckType
10+
{
11+
[Description("库位盘点")]
12+
Local = 1,
13+
14+
[Description("产品盘点")]
15+
Product = 2
16+
}
17+
}

Diff for: Git.Storage.Common/ECusType.cs

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.ComponentModel;
4+
using System.Linq;
5+
using System.Text;
6+
7+
namespace Git.Storage.Common
8+
{
9+
public enum ECusType
10+
{
11+
/// <summary>
12+
/// 合作客户
13+
/// </summary>
14+
[Description("合作客户")]
15+
Cooperation = 1,
16+
17+
/// <summary>
18+
/// 潜在客户
19+
/// </summary>
20+
[Description("潜在客户")]
21+
Potential = 2,
22+
23+
/// <summary>
24+
/// 丢失客户
25+
/// </summary>
26+
[Description("丢失客户")]
27+
Lost = 3,
28+
29+
/// <summary>
30+
/// 虚拟客户
31+
/// </summary>
32+
[Description("虚拟客户")]
33+
Invented = 4
34+
}
35+
}

Diff for: Git.Storage.Common/EDataSourceType.cs

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/*******************************************************************************
2+
* Copyright (C) Git Corporation. All rights reserved.
3+
*
4+
* Author: 情缘
5+
* Create Date: 2015/9/5 20:59:26
6+
*
7+
* Description: Git.Framework
8+
* http://www.cnblogs.com/qingyuan/
9+
* Revision History:
10+
* Date Author Description
11+
* 2015/9/5 20:59:26 情缘
12+
*********************************************************************************/
13+
14+
using System;
15+
using System.Collections.Generic;
16+
using System.ComponentModel;
17+
using System.Linq;
18+
using System.Text;
19+
20+
namespace Git.Storage.Common
21+
{
22+
public enum EDataSourceType
23+
{
24+
[Description("SQL语句")]
25+
SQL=1,
26+
27+
[Description("存储过程")]
28+
Procedure=2
29+
}
30+
}

Diff for: Git.Storage.Common/EElementType.cs

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
/*******************************************************************************
2+
* Copyright (C) Git Corporation. All rights reserved.
3+
*
4+
* Author: 情缘
5+
* Create Date: 2015/9/6 10:35:24
6+
*
7+
* Description: Git.Framework
8+
* http://www.cnblogs.com/qingyuan/
9+
* Revision History:
10+
* Date Author Description
11+
* 2015/9/6 10:35:24 情缘
12+
*********************************************************************************/
13+
14+
using System;
15+
using System.Collections.Generic;
16+
using System.ComponentModel;
17+
using System.Linq;
18+
using System.Text;
19+
20+
namespace Git.Storage.Common
21+
{
22+
public enum EElementType
23+
{
24+
[Description("文本框")]
25+
TextBox=1,
26+
27+
[Description("文本域")]
28+
TextArea=2,
29+
30+
[Description("下拉框")]
31+
Select=3,
32+
33+
[Description("时间框")]
34+
DateTime=4,
35+
36+
[Description("日期框")]
37+
Date=5
38+
}
39+
}

Diff for: Git.Storage.Common/EEquipmentStatus.cs

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.ComponentModel;
4+
using System.Linq;
5+
using System.Text;
6+
7+
namespace Git.Storage.Common
8+
{
9+
public enum EEquipmentStatus
10+
{
11+
/// <summary>
12+
/// 闲置
13+
/// </summary>
14+
[Description("闲置")]
15+
Unused = 1,
16+
17+
/// <summary>
18+
/// 正在使用
19+
/// </summary>
20+
[Description("正在使用")]
21+
IsUsing = 2,
22+
23+
/// <summary>
24+
/// 报修
25+
/// </summary>
26+
[Description("报修")]
27+
Repair = 3,
28+
29+
/// <summary>
30+
/// 报损
31+
/// </summary>
32+
[Description("报损")]
33+
Breakage = 4,
34+
35+
/// <summary>
36+
/// 遗失
37+
/// </summary>
38+
[Description("遗失")]
39+
Lost = 5,
40+
}
41+
}

Diff for: Git.Storage.Common/EInType.cs

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
/*******************************************************************************
2+
* Copyright (C) Git Corporation. All rights reserved.
3+
*
4+
* Author: 情缘
5+
* Create Date: 2013-11-30 9:03:48
6+
*
7+
* Description: Git.Framework
8+
* http://www.cnblogs.com/qingyuan/
9+
* Revision History:
10+
* Date Author Description
11+
* 2013-11-30 9:03:48 情缘
12+
*********************************************************************************/
13+
14+
using System;
15+
using System.Collections.Generic;
16+
using System.ComponentModel;
17+
using System.Linq;
18+
using System.Text;
19+
20+
namespace Git.Storage.Common
21+
{
22+
public enum EInType
23+
{
24+
/// <summary>
25+
/// 购买相应的产品并且入到仓库
26+
/// </summary>
27+
[Description("采购收货入库")]
28+
Purchase=1,
29+
30+
/// <summary>
31+
/// 将产品出售给客户然后因为某种原因退回仓库
32+
/// </summary>
33+
[Description("销售退货入库")]
34+
SellToBack=2,
35+
36+
/// <summary>
37+
/// 加工生产产品入到仓库
38+
/// </summary>
39+
[Description("生产产品入库")]
40+
Produce = 3,
41+
42+
/// <summary>
43+
/// 内部借用某个物品使用完之后还回仓库入库
44+
/// </summary>
45+
[Description("领用退还入库")]
46+
BorrowToBack=4,
47+
48+
/// <summary>
49+
/// 从外部借入某个物品入库
50+
/// </summary>
51+
[Description("借货入库")]
52+
BorrowIn=5,
53+
54+
/// <summary>
55+
/// 将物品借给其他人然后还回仓库
56+
/// </summary>
57+
[Description("借出还入")]
58+
BorrowOut = 6,
59+
}
60+
}

Diff for: Git.Storage.Common/EIsDelete.cs

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.ComponentModel;
4+
using System.Linq;
5+
using System.Text;
6+
7+
namespace Git.Storage.Common
8+
{
9+
public enum EIsDelete
10+
{
11+
/// <summary>
12+
/// 未删除
13+
/// </summary>
14+
[Description("未删除")]
15+
NotDelete=0,
16+
17+
/// <summary>
18+
/// 已删除
19+
/// </summary>
20+
[Description("已删除")]
21+
Deleted=1
22+
}
23+
}

0 commit comments

Comments
 (0)