枚举接口

This commit is contained in:
tongfei
2023-11-10 17:06:47 +08:00
parent c9a6b21644
commit 67acdc0b8a
2 changed files with 18 additions and 18 deletions

View File

@@ -13,39 +13,39 @@ namespace WMS.Web.Core.Dto
/// <summary>
/// 出库单类型
/// </summary>
public Dictionary<string, string> OutStockType { get; set; } = new Dictionary<string, string>();
public Dictionary<int, string> OutStockType { get; set; } = new Dictionary<int, string>();
/// <summary>
/// 移库单类型
/// </summary>
public Dictionary<string, string> MoveBoxType { get; set; } = new Dictionary<string, string>();
public Dictionary<int, string> MoveBoxType { get; set; } = new Dictionary<int, string>();
/// <summary>
/// 盘点结果类型
/// </summary>
public Dictionary<string, string> TakeStockType { get; set; } = new Dictionary<string, string>();
public Dictionary<int, string> TakeStockType { get; set; } = new Dictionary<int, string>();
/// <summary>
/// 入库单类型
/// </summary>
public Dictionary<string, string> InstockType { get; set; } = new Dictionary<string, string>();
public Dictionary<int, string> InstockType { get; set; } = new Dictionary<int, string>();
/// <summary>
/// 入库状态
/// </summary>
public Dictionary<string, string> InstockStatus { get; set; } = new Dictionary<string, string>();
public Dictionary<int, string> InstockStatus { get; set; } = new Dictionary<int, string>();
/// <summary>
/// 类型1为入库回退下架2为出库回退上架
/// </summary>
public Dictionary<string, string> BackRecordType { get; set; } = new Dictionary<string, string>();
public Dictionary<int, string> BackRecordType { get; set; } = new Dictionary<int, string>();
/// <summary>
/// 类型1为入库2为出库
/// </summary>
public Dictionary<string, string> InventoryInOutType { get; set; } = new Dictionary<string, string>();
public Dictionary<int, string> InventoryInOutType { get; set; } = new Dictionary<int, string>();
/// <summary>
/// 单据类型
/// </summary>
public Dictionary<string, string> OrderType { get; set; } = new Dictionary<string, string>();
public Dictionary<int, string> OrderType { get; set; } = new Dictionary<int, string>();
/// <summary>
/// 非采购上架方式
/// </summary>
public Dictionary<string, string> ShelfMethod { get; set; } = new Dictionary<string, string>();
public Dictionary<int, string> ShelfMethod { get; set; } = new Dictionary<int, string>();