using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Common.OrderEnum { /// /// 入库单类型 100 生产入库单;200 生产退料单;300 采购入库单;400 调拨入库单;500 销售退货单;600 空盘入库单;700 其他入库单 /// public enum InOrderTypeEnum { /// /// 生产入库单 /// [Description("生产入库单")] Product = 100, /// /// 生产退料单 /// [Description("生产退料单")] Return = 105, /// /// 采购入库单 /// [Description("采购入库单")] Purchase = 110, /// /// 调拨入库单 /// [Description("调拨入库单")] Allocat = 115, /// /// 销售退货单 /// [Description("销售退货单")] SaleReturn = 120, /// /// 空盘入库单 /// [Description("空盘入库单")] EmptyDisk = 125, /// /// 其他入库单 /// [Description("其他入库单")] Other = 130 } }