using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_Common.TaskEnum { public enum TaskTypeEnum { /// /// 领料出库 /// [Description("领料出库")] Outbound = 100, /// /// 采购入库 /// [Description("采购入库")] Inbound = 510, /// /// 巷道内移库 /// [Description("巷道内移库")] Relocation = 900 } }