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("小托盘")] SmallPallet = 1, /// /// 中托盘 /// [Description("中托盘")] MediumPallet = 2, /// /// 大托盘 /// [Description("大托盘")] LargePallet = 3, } }