using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace iWareModel.EnumType.EDevice.AGV
{
///
/// AGV任务类型枚举
///
public enum AgvTaskTypeEnum
{
///
/// 厂内货架搬运
///
F01 = 1,
///
/// 厂内货架空满交换
///
F02 = 2,
///
/// 辊筒搬运接驳
///
F03 = 3,
///
/// 厂内货架出库 AGV 待命
///
F04 = 4,
///
/// 旋转货架
///
F05 = 5,
///
/// 厂内电梯任务
///
F06 = 6,
///
/// 入库
///
RK01 = 7,
///
/// 出库
///
CK01 = 8
}
}