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, /// /// HCJ入库站台 /// [Description("HCJ入库站台")] HCJUnload = 2, /// /// 过道入库站台(外) /// [Description("过道入库站台(外)")] Aisleplatform_Outside = 3, /// /// 入库站台 /// [Description("入库站台")] Storageplatform = 4, /// /// 过道HCJ站台 /// [Description("过道HCJ站台")] HCJAisleplatform = 5, /// /// 过道入库站台内) /// [Description("过道入库站台(内)")] Aisleplatform_Medial = 6, } }