using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEAWCS_DTO.Enum
{
public enum RGVEquipment
{
///
/// 入库口RGV
///
[Description("入库口RGV")]
InRGVForklift = 1,
///
/// 出库口RGV
///
[Description("出库口RGV")]
OutRGVForklift = 2,
///
/// 过道子车
///
[Description("过道子车")]
Corridorcar = 3,
///
/// 母车拖车
///
[Description("母车拖车")]
Mothertrailer = 4,
///
/// 异常出库口
///
[Description("异常出库口")]
AbnormalOutbound =5,
///
/// 出库站台
///
[Description("出库站台")]
OutboundPlatform =6,
///
/// HCJ站台
///
[Description("HCJ站台")]
HCJPlatform = 7,
///
/// 异常出库口
///
[Description("异常出库口")]
OutboundExit = 8,
///
/// 入库站台
///
[Description("入库站台")]
InboundPlatform = 9,
///
/// 安全门
///
[Description("安全门")]
AQMexit = 10,
}
public enum RGVTasktype
{
///
/// 入库
///
[Description("入库")]
Inbound = 1,
///
/// 出库
///
[Description("出库")]
Outbound = 2,
}
public enum StorageAisleEnum
{
///
/// 1巷道
///
[Description("1巷道")]
LaneOne = 1,
///
/// 2巷道
///
[Description("2巷道")]
LaneTwo = 2,
///
/// 3巷道
///
[Description("3巷道")]
LaneThree = 3,
///
/// 4巷道
///
[Description("4巷道")]
LaneFour = 4,
}
}