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,
}
}