using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWareModel.EnumType.EDevice.AGV { /// /// AGV位置类型 /// public enum AgvPositionType { [Description("00")] 位置编号 = 0, [Description("01")] 物料批次号 = 1, [Description("02")] 策略编号 = 2, [Description("03")] 货架编号 = 3, [Description("04")] 区域编号 = 4, [Description("05")] 仓位编号 = 5, [Description("06")] 巷道编号 = 6, [Description("07")] 容器编号 = 7, [Description("08")] 巷道策略 = 8, [Description("09")] 巷道区域 = 9 } }