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, } }