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 TaskInboundTypeEnum { /// /// 入库 /// [Description("入库")] Inbound = 200, /// /// 其他入库 /// [Description("其他入库")] InOther = 205, } public enum TaskOutboundTypeEnum { /// /// 出库 /// [Description("出库")] Outbound = 100, /// /// 调拨出库 /// [Description("调拨出库")] OutAllocate = 105, /// /// 其他出库 /// [Description("其他出库")] OutOther = 110, /// /// 生产领料出库 /// [Description("生产领料出库")] MaterialRequisition = 115, /// /// 原材料出库 /// [Description("原材料出库")] RawMaterials = 120, } public enum TaskRelocationTypeEnum { /// /// 库内移库 /// [Description("库内移库")] Relocation = 300, /// /// 库外移库 /// [Description("库外移库")] RelocationIn = 301 } public enum TaskOtherTypeEnum { } public enum TaskAGVCarryTypeEnum { /// /// AGV搬运 /// [Description("AGV搬运")] Carry = 400, /// /// AGV移库搬运 /// [Description("AGV移库搬运")] CarryReloction = 410 } public enum TaskAcrossFloorTypeEnum { /// /// 跨楼层搬运 /// [Description("跨楼层搬运")] AcrossFloorCarry = 500 } }