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 LocationTypeEnum { /// /// 正常货位 /// [Description("正常货位")] Normal = 1, /// /// 暂存位 /// [Description("暂存位")] Feeding= 2, /// /// 入库口货位 /// [Description("提升机")] In = 3, /// /// 空车出库口 /// [Description("输送线")] OutEmpty = 4, /// /// 组立机位置 /// [Description("组立机")] OutWorkUnit = 5 } }