using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Common.CommonEnum { public enum AGVStationAreaEnum { /// /// 月台区 /// [Description("月台区")] AreaA = 1, /// /// 入库区 /// [Description("入库区")] AreaB = 2, /// /// 织布区 /// [Description("织布区")] AreaC = 3, /// /// 淋膜区 /// [Description("淋膜区")] AreaD = 4, /// /// 暂存区 /// [Description("暂存区")] AreaE = 5, /// /// 印刷区 /// [Description("印刷区")] AreaF = 6, /// /// 冲切区 /// [Description("冲切区")] AreaG = 7, /// /// 原料区 /// [Description("原料区")] AreaH = 8, /// /// 纸袋区 /// [Description("纸袋区")] AreaI = 9, /// /// 布袋区 /// [Description("布袋区")] AreaJ = 10, /// /// 纸杯区 /// [Description("纸杯区")] AreaK = 11, /// /// 雾化区 /// [Description("雾化区")] AreaL = 12 } }