using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WMS.Info { public enum EStockOutOrderType { /// /// 原料出库 /// [Description("原料出库")] StockOutOrderTypeMaterial = 1, /// /// 成品出库 /// [Description("成品出库")] StockOutOrderTypeProduct = 2, /// /// 其他出库 /// [Description("其他出库")] StockOutOrderTypeOther = 3, /// /// 空托盘出库 /// [Description("空托盘出库")] StockOutOrderTypeTray = 4, /// /// 转仓出库 /// [Description("转仓出库")] StockOutOrderTypeTransfer = 5, /// /// 原料盘点 /// [Description("原料盘点")] StockOutOrderTypeMatCheck = 7, /// /// 成品盘点 /// [Description("成品盘点")] StockOutOrderTypeProductCheck = 8, /// /// 半托出库 /// [Description("半托出库")] StockOutOrderTypeHalfTray =9, } }