Skip to content

Commit

Permalink
吉特仓储系统提交代码
Browse files Browse the repository at this point in the history
  • Loading branch information
hechenqingyuan committed May 19, 2016
1 parent 0382ee1 commit 17acfbb
Show file tree
Hide file tree
Showing 2,669 changed files with 550,986 additions and 0 deletions.
33 changes: 33 additions & 0 deletions Git.Storage.Common/EAudite.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/*******************************************************************************
* Copyright (C) Git Corporation. All rights reserved.
*
* Author: 情缘
* Create Date: 2013-11-29 23:39:49
*
* Description: Git.Framework
* http://www.cnblogs.com/qingyuan/
* Revision History:
* Date Author Description
* 2013-11-29 23:39:49 情缘
*********************************************************************************/

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;

namespace Git.Storage.Common
{
public enum EAudite
{
[Description("等待审核")]
Wait=1,

[Description("审核成功")]
Pass=2,

[Description("审核失败")]
NotPass=3
}
}
30 changes: 30 additions & 0 deletions Git.Storage.Common/EBadType.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/*******************************************************************************
* Copyright (C) Git Corporation. All rights reserved.
*
* Author: 情缘
* Create Date: 2013-11-29 23:45:39
*
* Description: Git.Framework
* http://www.cnblogs.com/qingyuan/
* Revision History:
* Date Author Description
* 2013-11-29 23:45:39 情缘
*********************************************************************************/

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;

namespace Git.Storage.Common
{
public enum EBadType
{
[Description("损坏报损")]
Bad = 1,

[Description("丢失报损")]
Loss = 2,
}
}
30 changes: 30 additions & 0 deletions Git.Storage.Common/EBool.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/*******************************************************************************
* Copyright (C) Git Corporation. All rights reserved.
*
* Author: 情缘
* Create Date: 2014-01-02 10:51:23
*
* Description: Git.Framework
* http://www.cnblogs.com/qingyuan/
* Revision History:
* Date Author Description
* 2014-01-02 10:51:23 情缘
*********************************************************************************/

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;

namespace Git.Storage.Common
{
public enum EBool
{
[Description("是")]
Yes = 0,

[Description("否")]
No = 1
}
}
51 changes: 51 additions & 0 deletions Git.Storage.Common/EChange.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,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,
}
}
17 changes: 17 additions & 0 deletions Git.Storage.Common/ECheckType.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;

namespace Git.Storage.Common
{
public enum ECheckType
{
[Description("库位盘点")]
Local = 1,

[Description("产品盘点")]
Product = 2
}
}
35 changes: 35 additions & 0 deletions Git.Storage.Common/ECusType.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;

namespace Git.Storage.Common
{
public enum ECusType
{
/// <summary>
/// 合作客户
/// </summary>
[Description("合作客户")]
Cooperation = 1,

/// <summary>
/// 潜在客户
/// </summary>
[Description("潜在客户")]
Potential = 2,

/// <summary>
/// 丢失客户
/// </summary>
[Description("丢失客户")]
Lost = 3,

/// <summary>
/// 虚拟客户
/// </summary>
[Description("虚拟客户")]
Invented = 4
}
}
30 changes: 30 additions & 0 deletions Git.Storage.Common/EDataSourceType.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/*******************************************************************************
* Copyright (C) Git Corporation. All rights reserved.
*
* Author: 情缘
* Create Date: 2015/9/5 20:59:26
*
* Description: Git.Framework
* http://www.cnblogs.com/qingyuan/
* Revision History:
* Date Author Description
* 2015/9/5 20:59:26 情缘
*********************************************************************************/

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;

namespace Git.Storage.Common
{
public enum EDataSourceType
{
[Description("SQL语句")]
SQL=1,

[Description("存储过程")]
Procedure=2
}
}
39 changes: 39 additions & 0 deletions Git.Storage.Common/EElementType.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/*******************************************************************************
* Copyright (C) Git Corporation. All rights reserved.
*
* Author: 情缘
* Create Date: 2015/9/6 10:35:24
*
* Description: Git.Framework
* http://www.cnblogs.com/qingyuan/
* Revision History:
* Date Author Description
* 2015/9/6 10:35:24 情缘
*********************************************************************************/

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;

namespace Git.Storage.Common
{
public enum EElementType
{
[Description("文本框")]
TextBox=1,

[Description("文本域")]
TextArea=2,

[Description("下拉框")]
Select=3,

[Description("时间框")]
DateTime=4,

[Description("日期框")]
Date=5
}
}
41 changes: 41 additions & 0 deletions Git.Storage.Common/EEquipmentStatus.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;

namespace Git.Storage.Common
{
public enum EEquipmentStatus
{
/// <summary>
/// 闲置
/// </summary>
[Description("闲置")]
Unused = 1,

/// <summary>
/// 正在使用
/// </summary>
[Description("正在使用")]
IsUsing = 2,

/// <summary>
/// 报修
/// </summary>
[Description("报修")]
Repair = 3,

/// <summary>
/// 报损
/// </summary>
[Description("报损")]
Breakage = 4,

/// <summary>
/// 遗失
/// </summary>
[Description("遗失")]
Lost = 5,
}
}
60 changes: 60 additions & 0 deletions Git.Storage.Common/EInType.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
/*******************************************************************************
* Copyright (C) Git Corporation. All rights reserved.
*
* Author: 情缘
* Create Date: 2013-11-30 9:03:48
*
* Description: Git.Framework
* http://www.cnblogs.com/qingyuan/
* Revision History:
* Date Author Description
* 2013-11-30 9:03:48 情缘
*********************************************************************************/

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;

namespace Git.Storage.Common
{
public enum EInType
{
/// <summary>
/// 购买相应的产品并且入到仓库
/// </summary>
[Description("采购收货入库")]
Purchase=1,

/// <summary>
/// 将产品出售给客户然后因为某种原因退回仓库
/// </summary>
[Description("销售退货入库")]
SellToBack=2,

/// <summary>
/// 加工生产产品入到仓库
/// </summary>
[Description("生产产品入库")]
Produce = 3,

/// <summary>
/// 内部借用某个物品使用完之后还回仓库入库
/// </summary>
[Description("领用退还入库")]
BorrowToBack=4,

/// <summary>
/// 从外部借入某个物品入库
/// </summary>
[Description("借货入库")]
BorrowIn=5,

/// <summary>
/// 将物品借给其他人然后还回仓库
/// </summary>
[Description("借出还入")]
BorrowOut = 6,
}
}
23 changes: 23 additions & 0 deletions Git.Storage.Common/EIsDelete.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;

namespace Git.Storage.Common
{
public enum EIsDelete
{
/// <summary>
/// 未删除
/// </summary>
[Description("未删除")]
NotDelete=0,

/// <summary>
/// 已删除
/// </summary>
[Description("已删除")]
Deleted=1
}
}
Loading

0 comments on commit 17acfbb

Please sign in to comment.