using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto
{
///
/// 所有枚举信息
///
public class EnumStatusResponse
{
public EnumStatusResponse() { }
///
/// 出库单类型
///
public Dictionary OutStockType { get; set; } = new Dictionary();
///
/// 移库单类型
///
public Dictionary MoveBoxType { get; set; } = new Dictionary();
///
/// 盘点结果类型
///
public Dictionary TakeStockType { get; set; } = new Dictionary();
///
/// 入库单类型
///
public Dictionary InstockType { get; set; } = new Dictionary();
///
/// 入库状态
///
public Dictionary InstockStatus { get; set; } = new Dictionary();
///
/// 类型:1为入库回退下架,2为出库回退上架
///
public Dictionary BackRecordType { get; set; } = new Dictionary();
///
/// 类型:1为入库,2为出库
///
public Dictionary InventoryInOutType { get; set; } = new Dictionary();
///
/// 单据类型
///
public Dictionary OrderType { get; set; } = new Dictionary();
///
/// 非采购上架方式
///
public Dictionary ShelfMethod { get; set; } = new Dictionary();
///
/// 下载导出订单类型
///
public Dictionary FileDownLoadOrderType { get; set; } = new Dictionary();
///
/// 下载导出状态
///
public Dictionary ExportStatus { get; set; } = new Dictionary();
///
/// 出入库方式:按箱或者按产品
///
public Dictionary InventoryInOutMethod { get; set; } = new Dictionary();
///
/// 出库状态
///
public Dictionary OutStockStatus { get; set; } = new Dictionary();
///
/// 同步金蝶状态
///
public Dictionary SyncStatus { get; set; } = new Dictionary();
}
}