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