using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Common.LocationEnum { /// /// 货位类型 /// public enum LocationTypeEnum { /// /// 未定义 /// [Description("未定义")] Undefined = 0, /// /// 货架 /// [Description("货架")] ShelfCapacity = 1, /// /// 卷绕段 /// [Description("卷绕段")] MediumPallet = 2, /// /// 大托盘 /// [Description("大托盘")] LargePallet = 3, /// /// 特大托盘 /// [Description("特大托盘")] ExtraPallet = 4, /// /// 分容工装架 /// [Description("分容工装架")] SubRackType = 5, /// /// 分容柜 /// [Description("分容柜")] Capacity = 6, } }