using System.ComponentModel; namespace iWare.Wms.Core { /// /// 操作类型 /// public enum OutboundOperationType { /// /// 下线 /// [Description("下线")] 下线 = 1, /// /// 撤销下线 /// [Description("撤销下线")] 撤销下线 = 2, /// /// 出库 /// [Description("出库")] 出库 = 3, /// /// 撤销出库 /// [Description("撤销出库")] 撤销出库 = 4, /// /// 入库 /// [Description("入库")] 入库 = 5, /// /// 撤销入库 /// [Description("撤销入库")] 撤销入库 = 6, } }