实体对象
This commit is contained in:
24
src/WMS.Web.Domain/Values/InventoryInOutType.cs
Normal file
24
src/WMS.Web.Domain/Values/InventoryInOutType.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using WMS.Web.Core;
|
||||
|
||||
namespace WMS.Web.Domain.Values
|
||||
{
|
||||
/// <summary>
|
||||
/// 物料收发明细类型
|
||||
/// </summary>
|
||||
public enum InventoryInOutType
|
||||
{
|
||||
/// <summary>
|
||||
/// 入库
|
||||
/// </summary>
|
||||
[EnumRemark("入库")]
|
||||
In =1,
|
||||
/// <summary>
|
||||
/// 出库
|
||||
/// </summary>
|
||||
[EnumRemark("出库")]
|
||||
Out =2
|
||||
}
|
||||
}
|
||||
39
src/WMS.Web.Domain/Values/OrderType.cs
Normal file
39
src/WMS.Web.Domain/Values/OrderType.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using WMS.Web.Core;
|
||||
|
||||
namespace WMS.Web.Domain.Values
|
||||
{
|
||||
/// <summary>
|
||||
/// 单据类型
|
||||
/// </summary>
|
||||
public enum OrderType
|
||||
{
|
||||
/// <summary>
|
||||
/// 采购入库
|
||||
/// </summary>
|
||||
[EnumRemark("采购入库")]
|
||||
Purchase = 1,
|
||||
/// <summary>
|
||||
/// 其他入库
|
||||
/// </summary>
|
||||
[EnumRemark("其他入库")]
|
||||
Miscellaneous = 2,
|
||||
/// <summary>
|
||||
/// 直接调拨入库
|
||||
/// </summary>
|
||||
[EnumRemark("直接调拨入库")]
|
||||
Stkdirecttransfers = 3,
|
||||
/// <summary>
|
||||
/// 分步式入库
|
||||
/// </summary>
|
||||
[EnumRemark("分步式入库")]
|
||||
StktransferInst = 4,
|
||||
/// <summary>
|
||||
/// 组装拆卸入库
|
||||
/// </summary>
|
||||
[EnumRemark("组装拆卸入库")]
|
||||
Assembled = 5,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user