系统类型枚举接口
This commit is contained in:
27
src/WMS.Web.Core/Dto/EnumStatusResponse.cs
Normal file
27
src/WMS.Web.Core/Dto/EnumStatusResponse.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace WMS.Web.Core.Dto
|
||||
{
|
||||
/// <summary>
|
||||
/// 所有枚举信息
|
||||
/// </summary>
|
||||
public class EnumStatusResponse
|
||||
{
|
||||
public EnumStatusResponse() { }
|
||||
/// <summary>
|
||||
/// 出库单类型
|
||||
/// </summary>
|
||||
public Dictionary<string, string> OutStockType { get; set; } = new Dictionary<string, string>();
|
||||
/// <summary>
|
||||
/// 移库单类型
|
||||
/// </summary>
|
||||
public Dictionary<string, string> MoveBoxType { get; set; } = new Dictionary<string, string>();
|
||||
/// <summary>
|
||||
/// 盘点结果类型
|
||||
/// </summary>
|
||||
public Dictionary<string, string> TakeStockType { get; set; } = new Dictionary<string, string>();
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user