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