系统类型枚举接口

This commit is contained in:
18942506660
2023-10-27 10:45:07 +08:00
parent 631b12ea77
commit ce05683687
2 changed files with 77 additions and 0 deletions

View 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>();
}
}