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 = 0, /// /// 成品区 /// [Description("成品库内")] AreaB = 1, /// /// 入库区 /// [Description("入库区")] AreaC = 2, /// /// 淋膜区 /// [Description("淋膜区")] AreaD = 3, /// /// 织布区 /// [Description("织布区")] AreaE = 4, /// /// 暂存区 /// [Description("织布区")] AreaF = 5, /// /// 印刷区 /// [Description("印刷区")] AreaG = 6, /// /// 冲切区 /// [Description("冲切区")] AreaH = 7 } }