using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO.Enum { public enum AgvStationEnum { /// /// 上料位 /// [Description("上料位")] BoardLoad = 1, /// /// 下料位 /// [Description("下料位")] BoardUnload = 2, /// /// 上料缓存位 /// [Description("上料缓存位")] BoardStore = 3, /// /// 垫板使用位 /// [Description("垫板使用位")] PadUse = 4, /// /// 垫板回收位 /// [Description("垫板回收位")] PadRecycle = 5, /// /// 垫板缓存位 /// [Description("垫板缓存位")] PadStore = 6, /// /// 下料缓存位 /// [Description("下料缓存位")] BlankingBuffer = 7, } public enum AgvareaEnum { /// /// 区域一 /// [Description("区域一")] AreaOne = 1, /// /// 区域二 /// [Description("区域二")] AreaTwo = 2, /// /// 区域三 /// [Description("区域三")] AreaThree = 3, /// /// 区域四 /// [Description("区域四")] AreaFour = 4, } }