using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_Common.LocationEnum { public enum RGVLocationTypeEnum { /// /// 单通道 /// [Description("单通道")] SingleChannel = 1, /// /// 双通道 /// [Description("双通道")] BinaryChannels = 2, } /// /// 货位类型 /// public enum LocationTypeEnum { /// /// 未定义 /// [Description("未定义")] Undefined = 0, /// /// 小托盘 /// [Description("小托盘")] SmallPallet = 1, /// /// 中托盘 /// [Description("中托盘")] MediumPallet = 2, /// /// 大托盘 /// [Description("大托盘")] LargePallet = 3, /// /// 特大托盘 /// [Description("特大托盘")] ExtraPallet = 4, } }