using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; namespace WIDESEA_Common { public enum AGVTaskTypeEnum { /// /// 送满料架 /// //SendFull = 1, /// /// 取空料架 /// //TakeEmpty = 2, /// /// 待检库入库 /// [Description("待检库入库")] TaskType_Inbound = 1, /// /// 待检库出库 /// [Description("待检库出库")] TaskType_Outbound = 2, /// /// 外协库入库 /// [Description("外协库入库")] TaskType_OutsourceInbound = 3, /// /// 外协库出库 /// [Description("外协库出库")] TaskType_OutsourceOutbound = 4, /// /// 待检库内移库 /// [Description("待检库内移库")] TaskType_Carry, /// /// 待检移库外协 /// [Description("待检移库外协")] TaskType_OutsourceCarry, /// /// 补空托任务 /// [Description("补空托任务")] TaskType_EmptyPallet, } }