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 PlatformStationEnum { /// /// 入库口 /// [Description("入库口")] BoardLoad = 1, /// /// 出库口 /// [Description("出库口")] BoardUnload = 2, /// /// RGV入库站台 /// [Description("RGV入库站台")] BoardStore = 3, /// /// RGV出库站台 /// [Description("RGV出库站台")] PadUse = 4, /// /// 堆垛机入库站台 /// [Description("堆垛机入库站台")] PadRecycle = 5, /// /// 堆垛机出库站台 /// [Description("堆垛机出库站台")] PadStore = 6, /// /// 空托入库站台 /// [Description("空托入库站台")] EmptyRecycle = 7, /// /// 空托出库站台 /// [Description("空托出库站台")] EmptyStore = 8, /// /// 检修缓存台 /// [Description("检修缓存台")] MaintenanceoutStore = 9, } }