Files
WMS-Api/src/WMS.Web.Core/Dto/EnumStatusResponse.cs
18942506660 efd19df5b8 修复bug
2023-11-30 10:58:06 +08:00

68 lines
2.5 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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<int, string> OutStockType { get; set; } = new Dictionary<int, string>();
/// <summary>
/// 移库单类型
/// </summary>
public Dictionary<int, string> MoveBoxType { get; set; } = new Dictionary<int, string>();
/// <summary>
/// 盘点结果类型
/// </summary>
public Dictionary<int, string> TakeStockType { get; set; } = new Dictionary<int, string>();
/// <summary>
/// 入库单类型
/// </summary>
public Dictionary<int, string> InstockType { get; set; } = new Dictionary<int, string>();
/// <summary>
/// 入库状态
/// </summary>
public Dictionary<int, string> InstockStatus { get; set; } = new Dictionary<int, string>();
/// <summary>
/// 类型1为入库回退下架2为出库回退上架
/// </summary>
public Dictionary<int, string> BackRecordType { get; set; } = new Dictionary<int, string>();
/// <summary>
/// 类型1为入库2为出库
/// </summary>
public Dictionary<int, string> InventoryInOutType { get; set; } = new Dictionary<int, string>();
/// <summary>
/// 单据类型
/// </summary>
public Dictionary<int, string> OrderType { get; set; } = new Dictionary<int, string>();
/// <summary>
/// 非采购上架方式
/// </summary>
public Dictionary<int, string> ShelfMethod { get; set; } = new Dictionary<int, string>();
/// <summary>
/// 下载导出订单类型
/// </summary>
public Dictionary<int, string> FileDownLoadOrderType { get; set; } = new Dictionary<int, string>();
/// <summary>
/// 下载导出状态
/// </summary>
public Dictionary<int, string> ExportStatus { get; set; } = new Dictionary<int, string>();
/// <summary>
/// 出入库方式:按箱或者按产品
/// </summary>
public Dictionary<int, string> InventoryInOutMethod { get; set; } = new Dictionary<int, string>();
/// <summary>
/// 出库状态
/// </summary>
public Dictionary<int, string> OutStockStatus { get; set; } = new Dictionary<int, string>();
}
}