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