入库单实体

This commit is contained in:
tongfei
2023-10-25 16:49:36 +08:00
parent 22213af18f
commit 92f612223f
4 changed files with 102 additions and 1 deletions

View File

@@ -0,0 +1,37 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Domain.Values.Erp
{
/// <summary>
/// 业务对象表单Id对应erp的单据表的名称
/// </summary>
public enum FormIdParam
{
/// <summary>
/// 采购订单
/// </summary>
PUR_PurchaseOrder=1,
/// <summary>
/// 采购入库单
/// </summary>
STK_InStock=2,
/// <summary>
/// 其他入库单
/// </summary>
STK_MISCELLANEOUS=3,
/// <summary>
/// 直接调拨单-里面包含出和入
/// </summary>
STK_TransferDirect = 4,
/// <summary>
/// 分步式调入单
/// </summary>
STK_TRANSFERIN=5,
/// <summary>
/// 组装拆卸单:里面包含出和入
/// </summary>
STK_AssembledApp=6,
}
}