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 = 3,
///
/// 搬运
///
[Description("搬运")]
TaskType_Outbound = 4,
///
/// 调拨入库
///
[Description("调拨入库")]
TaskType_AllotInbound = 5,
///
/// 调拨出库
///
[Description("调拨出库")]
TaskType_AllotOutbound = 6,
}
}